public enum SupportedPropertyType extends Enum<SupportedPropertyType> implements HasName
| Enum Constant and Description |
|---|
BOOLEAN
Boolean custom property.
|
INTEGER
Integer custom property.
|
STRING
String custom property.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getName() |
static SupportedPropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportedPropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedPropertyType UNKNOWN
public static final SupportedPropertyType INTEGER
public static final SupportedPropertyType STRING
public static final SupportedPropertyType BOOLEAN
public static SupportedPropertyType[] values()
for (SupportedPropertyType c : SupportedPropertyType.values()) System.out.println(c);
public static SupportedPropertyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getCode()
Copyright © 2023. All rights reserved.