public enum PropertyType extends Enum<PropertyType>
public static final PropertyType Byte
public static final PropertyType Short
public static final PropertyType Int
public static final PropertyType Long
public static final PropertyType Boolean
public static final PropertyType Float
public static final PropertyType Double
public static final PropertyType String
public static final PropertyType ByteArray
public static final PropertyType Date
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.