public static enum Datatype.Variety extends Enum<Datatype.Variety>
Modifier and Type | Method and Description |
---|---|
static Datatype.Variety |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Datatype.Variety[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Datatype.Variety Atomic
public static final Datatype.Variety List
public static final Datatype.Variety Union
public static final Datatype.Variety Complex
public static Datatype.Variety[] values()
for (Datatype.Variety c : Datatype.Variety.values()) System.out.println(c);
public static Datatype.Variety 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.