public static enum Import.ImportMultiplicity extends Enum<Import.ImportMultiplicity>
| Enum Constant and Description |
|---|
IMPORT |
IMPORT_MULTIPLE |
IMPORT_ONCE |
| Modifier and Type | Method and Description |
|---|---|
static Import.ImportMultiplicity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Import.ImportMultiplicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Import.ImportMultiplicity IMPORT
public static final Import.ImportMultiplicity IMPORT_ONCE
public static final Import.ImportMultiplicity IMPORT_MULTIPLE
public static Import.ImportMultiplicity[] values()
for (Import.ImportMultiplicity c : Import.ImportMultiplicity.values()) System.out.println(c);
public static Import.ImportMultiplicity 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 © 2012-2015. All Rights Reserved.