public enum PropertyType extends Enum<PropertyType>
public static final PropertyType BOOLEAN
public static final PropertyType DATETIME
public static final PropertyType DOUBLE
public static final PropertyType INT
public static final PropertyType LONG
public static final PropertyType STRING
public static PropertyType valueOf(String name)
name
- 要返回的枚举常量的名称。IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量NullPointerException
- 如果参数为空值public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);