public enum SizingMode extends java.lang.Enum<SizingMode>
Enum Constant and Description |
---|
Absolute
The size value is specified as absolute value ( e.g.
|
Relative
The size value is specified as relative value ( e.g.
|
Modifier and Type | Method and Description |
---|---|
static SizingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SizingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SizingMode Absolute
public static final SizingMode Relative
public static SizingMode[] values()
for (SizingMode c : SizingMode.values()) System.out.println(c);
public static SizingMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null