Package com.anylogic.engine.presentation
- java.lang.Object
-
- java.lang.Enum<ShapeControl.ValueType>
-
- com.anylogic.engine.presentation.ShapeControl.ValueType
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ShapeControl.ValueType>
- Enclosing class:
- ShapeControl
public static enum ShapeControl.ValueType extends java.lang.Enum<ShapeControl.ValueType>
TYPE_DOUBLE |
Control value-type constant for
double number editing mode,
applicable for ShapeSlider , ShapeTextField , ShapeComboBox .See constructors of these controls |
TYPE_INT |
Control value-type constant for
int number editing mode,
applicable for ShapeSlider , ShapeTextField , ShapeComboBox .See constructors of these controls |
TYPE_STRING |
Control value-type constant for
String editing mode,
applicable for ShapeTextField , ShapeComboBox .See constructors of these controls |
Enum Constant | Description |
---|
static ShapeControl.ValueType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ShapeControl.ValueType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method | Description |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getClass, notify, notifyAll, wait, wait, wait
public static final ShapeControl.ValueType TYPE_DOUBLE
Control value-type constant for
See constructors of these controls
double
number editing mode,
applicable for ShapeSlider
, ShapeTextField
, ShapeComboBox
.See constructors of these controls
public static final ShapeControl.ValueType TYPE_INT
Control value-type constant for
See constructors of these controls
int
number editing mode,
applicable for ShapeSlider
, ShapeTextField
, ShapeComboBox
.See constructors of these controls
public static final ShapeControl.ValueType TYPE_STRING
Control value-type constant for
See constructors of these controls
String
editing mode,
applicable for ShapeTextField
, ShapeComboBox
.See constructors of these controls
public static ShapeControl.ValueType[] values()
Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ShapeControl.ValueType c : ShapeControl.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
public static ShapeControl.ValueType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
How can we improve this article?
-