Package cn.mapway.ui.server.apt.jsstore
Enum JsFieldType
- java.lang.Object
-
- java.lang.Enum<JsFieldType>
-
- cn.mapway.ui.server.apt.jsstore.JsFieldType
-
- All Implemented Interfaces:
Serializable,Comparable<JsFieldType>
public enum JsFieldType extends Enum<JsFieldType>
JsFieldType- Author:
- zhang
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static JsFieldTypevalueOf(String name)Returns the enum constant of this type with the specified name.static JsFieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
String
public static final JsFieldType String
-
Number
public static final JsFieldType Number
-
Boolean
public static final JsFieldType Boolean
-
Object
public static final JsFieldType Object
-
Array
public static final JsFieldType Array
-
Date
public static final JsFieldType Date
-
-
Method Detail
-
values
public static JsFieldType[] 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 (JsFieldType c : JsFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsFieldType 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
-
getValue
public String getValue()
-
-