AnyLogic
Expand
Font size
  • java.lang.Object
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>

Enum Constant Summary

Enum Constants 
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

Method Summary

All Methods Static Methods Concrete Methods 
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

Methods inherited from class java.lang.Enum

compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

Methods inherited from class java.lang.Object

getClass, notify, notifyAll, wait, wait, wait

Enum Constant Detail

TYPE_DOUBLE

public static final 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

public static final ShapeControl.ValueType TYPE_INT
Control value-type constant for int number editing mode, applicable for ShapeSlider, ShapeTextField, ShapeComboBox.
See constructors of these controls

TYPE_STRING

public static final ShapeControl.ValueType TYPE_STRING
Control value-type constant for String editing mode, applicable for ShapeTextField, ShapeComboBox.
See constructors of these controls

Method Detail

values

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

valueOf

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 name
java.lang.NullPointerException - if the argument is null
How can we improve this article?