public enum ARRAY_TYPE extends Enum<ARRAY_TYPE>
| Modifier and Type | Method and Description |
|---|---|
static ARRAY_TYPE |
byName(String name) |
String |
getName() |
Object |
getValue(String rawValue) |
static ARRAY_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ARRAY_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ARRAY_TYPE INT
public static final ARRAY_TYPE STRING
public static final ARRAY_TYPE REAL
public static ARRAY_TYPE[] values()
for (ARRAY_TYPE c : ARRAY_TYPE.values()) System.out.println(c);
public static ARRAY_TYPE 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 static ARRAY_TYPE byName(String name)
public String getName()
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.