|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Unit>
net.sf.doolin.util.unit.Unit
public enum Unit
Different types of units.
| Enum Constant Summary | |
|---|---|
CM
Centimeter |
|
INCH
Inch |
|
PERCENT
Percentage |
|
PIXEL
Pixel |
|
| Method Summary | |
|---|---|
abstract double |
getPixels(Number reference)
Calculates the number of corresponding pixels for this unit, according to a reference. |
String |
getSymbol()
|
static Unit |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Unit[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Unit PERCENT
public static final Unit PIXEL
public static final Unit CM
public static final Unit INCH
| Method Detail |
|---|
public static Unit[] values()
for (Unit c : Unit.values()) System.out.println(c);
public static Unit valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic abstract double getPixels(Number reference)
reference - Reference value
public String getSymbol()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||