public enum ComponentBasicType extends Enum<ComponentBasicType> implements ComponentType
ComponentMetadata| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
DATE |
FUNCTION |
NUMBER |
OBJECT |
STRING |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static ComponentBasicType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentBasicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfisBasicTypepublic static final ComponentBasicType BOOLEAN
public static final ComponentBasicType DATE
public static final ComponentBasicType NUMBER
public static final ComponentBasicType STRING
public static final ComponentBasicType ARRAY
public static final ComponentBasicType OBJECT
public static final ComponentBasicType FUNCTION
public static final ComponentBasicType UNDEFINED
public static ComponentBasicType[] values()
for (ComponentBasicType c : ComponentBasicType.values()) System.out.println(c);
public static ComponentBasicType 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 nullCopyright © 2000–2019 Vaadin Ltd. All rights reserved.