public static enum VisualFormatter.Item.Property.Direction extends java.lang.Enum<VisualFormatter.Item.Property.Direction>
VisualFormatter.Item.Property.Direction is an enumeration representing
the direction of the property.| Enum Constant and Description |
|---|
INPUT
Input.
|
INPUT_OUTPUT
Input and Output.
|
OUTPUT
Output.
|
| Modifier and Type | Method and Description |
|---|---|
static VisualFormatter.Item.Property.Direction |
fromInt(int value)
Retrieves the corresponding property direction value from a valid integer.
|
int |
toInt()
Converts the property direction to its integer corresponding value.
|
static VisualFormatter.Item.Property.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VisualFormatter.Item.Property.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisualFormatter.Item.Property.Direction INPUT
public static final VisualFormatter.Item.Property.Direction OUTPUT
public static final VisualFormatter.Item.Property.Direction INPUT_OUTPUT
public static VisualFormatter.Item.Property.Direction[] values()
for (VisualFormatter.Item.Property.Direction c : VisualFormatter.Item.Property.Direction.values()) System.out.println(c);
public static VisualFormatter.Item.Property.Direction 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 nullpublic int toInt()
public static VisualFormatter.Item.Property.Direction fromInt(int value)
value - Integer to use as input in the conversion.