public static enum IDataType.ConstraintKind extends Enum<IDataType.ConstraintKind>
| Enum Constant and Description |
|---|
CHOICE |
IDENTIFIER |
NOTEMPTY |
QUALIFIED_IDENTIFIER |
SET |
| Modifier and Type | Method and Description |
|---|---|
static IDataType.ConstraintKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IDataType.ConstraintKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDataType.ConstraintKind NOTEMPTY
public static final IDataType.ConstraintKind IDENTIFIER
public static final IDataType.ConstraintKind QUALIFIED_IDENTIFIER
public static final IDataType.ConstraintKind SET
public static final IDataType.ConstraintKind CHOICE
public static IDataType.ConstraintKind[] values()
for (IDataType.ConstraintKind c : IDataType.ConstraintKind.values()) System.out.println(c);
public static IDataType.ConstraintKind 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 © 2014. All rights reserved.