public static enum Datatype.Type extends Enum<Datatype.Type>
| Enum Constant and Description |
|---|
Basic |
Domain |
ResultSet |
UserDefined |
| Modifier and Type | Method and Description |
|---|---|
static Datatype.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Datatype.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Datatype.Type Basic
public static final Datatype.Type UserDefined
public static final Datatype.Type ResultSet
public static final Datatype.Type Domain
public static Datatype.Type[] values()
for (Datatype.Type c : Datatype.Type.values()) System.out.println(c);
public static Datatype.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 nullCopyright © 2018 JBoss by Red Hat. All rights reserved.