public enum SideValue extends Enum<SideValue>
An enum providing the specific values determining the side of a trimmedWindow on which particular trim bars should be displayed.
UiPackageImpl.getSideValue()
Enum Constant and Description |
---|
BOTTOM
The 'Bottom' literal object
|
LEFT
The 'Left' literal object
|
RIGHT
The 'Right' literal object
|
TOP
The 'Top' literal object
|
Modifier and Type | Field and Description |
---|---|
static int |
BOTTOM_VALUE
The 'Bottom' literal value
|
static int |
LEFT_VALUE
The 'Left' literal value
|
static int |
RIGHT_VALUE
The 'Right' literal value
|
static int |
TOP_VALUE
The 'Top' literal value
|
static List<SideValue> |
VALUES
A public read-only list of all the 'Side Value' enumerators
|
Modifier and Type | Method and Description |
---|---|
static SideValue |
get(int value)
Returns the 'Side Value' literal with the specified integer value
|
static SideValue |
get(String literal)
Returns the 'Side Value' literal with the specified literal value
|
static SideValue |
getByName(String name)
Returns the 'Side Value' literal with the specified name
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation
|
static SideValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SideValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SideValue BOTTOM
BOTTOM_VALUE
public static final SideValue LEFT
LEFT_VALUE
public static final SideValue RIGHT
RIGHT_VALUE
public static final int TOP_VALUE
If the meaning of 'Top' literal object isn't clear, there really should be more of a description here...
TOP
,
Constant Field Valuespublic static final int BOTTOM_VALUE
If the meaning of 'Bottom' literal object isn't clear, there really should be more of a description here...
BOTTOM
,
Constant Field Valuespublic static final int LEFT_VALUE
If the meaning of 'Left' literal object isn't clear, there really should be more of a description here...
LEFT
,
Constant Field Valuespublic static final int RIGHT_VALUE
If the meaning of 'Right' literal object isn't clear, there really should be more of a description here...
RIGHT
,
Constant Field Valuespublic static SideValue[] values()
for (SideValue c : SideValue.values()) System.out.println(c);
public static SideValue 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 static SideValue get(String literal)
literal
- the literal.null
.public static SideValue getByName(String name)
name
- the name.null
.public static SideValue get(int value)
value
- the integer value.null
.public int getValue()
public String getName()
public String getLiteral()
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.