public enum LogicalHeight extends Enum<LogicalHeight>
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Returns the integer representation of the enumeration member.
|
static LogicalHeight |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalHeight[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalHeight SHORT
public static final LogicalHeight TALL
public static LogicalHeight[] values()
for (LogicalHeight c : LogicalHeight.values()) System.out.println(c);
public static LogicalHeight valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
© 2016 ZIH Corp. All Rights Reserved.