Package alpine.model
Enum IConfigProperty.PropertyType
- java.lang.Object
-
- java.lang.Enum<IConfigProperty.PropertyType>
-
- alpine.model.IConfigProperty.PropertyType
-
- All Implemented Interfaces:
Serializable,Comparable<IConfigProperty.PropertyType>
- Enclosing interface:
- IConfigProperty
public static enum IConfigProperty.PropertyType extends Enum<IConfigProperty.PropertyType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IConfigProperty.PropertyTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IConfigProperty.PropertyType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final IConfigProperty.PropertyType BOOLEAN
-
INTEGER
public static final IConfigProperty.PropertyType INTEGER
-
NUMBER
public static final IConfigProperty.PropertyType NUMBER
-
STRING
public static final IConfigProperty.PropertyType STRING
-
ENCRYPTEDSTRING
public static final IConfigProperty.PropertyType ENCRYPTEDSTRING
-
TIMESTAMP
public static final IConfigProperty.PropertyType TIMESTAMP
-
URL
public static final IConfigProperty.PropertyType URL
-
UUID
public static final IConfigProperty.PropertyType UUID
-
-
Method Detail
-
values
public static IConfigProperty.PropertyType[] 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 (IConfigProperty.PropertyType c : IConfigProperty.PropertyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IConfigProperty.PropertyType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-