public static enum Bond.BOND_OCCURRENCE_TYPE extends Enum<Bond.BOND_OCCURRENCE_TYPE>
| Enum Constant and Description |
|---|
allowed |
prohibited |
required |
| Modifier and Type | Method and Description |
|---|---|
static Bond.BOND_OCCURRENCE_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bond.BOND_OCCURRENCE_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bond.BOND_OCCURRENCE_TYPE prohibited
public static final Bond.BOND_OCCURRENCE_TYPE allowed
public static final Bond.BOND_OCCURRENCE_TYPE required
public static Bond.BOND_OCCURRENCE_TYPE[] values()
for (Bond.BOND_OCCURRENCE_TYPE c : Bond.BOND_OCCURRENCE_TYPE.values()) System.out.println(c);
public static Bond.BOND_OCCURRENCE_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 © 2009–2016. All rights reserved.