public static enum ModelUtilities.Completeness extends Enum<ModelUtilities.Completeness>
| Enum Constant and Description |
|---|
COMPLEX |
EMPTY |
ID_AND_TYPE |
ID_AND_TYPE_AND_LABEL |
ID_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static ModelUtilities.Completeness |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelUtilities.Completeness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelUtilities.Completeness EMPTY
public static final ModelUtilities.Completeness ID_ONLY
public static final ModelUtilities.Completeness ID_AND_TYPE
public static final ModelUtilities.Completeness ID_AND_TYPE_AND_LABEL
public static final ModelUtilities.Completeness COMPLEX
public static ModelUtilities.Completeness[] values()
for (ModelUtilities.Completeness c : ModelUtilities.Completeness.values()) System.out.println(c);
public static ModelUtilities.Completeness 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. All rights reserved.