|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
ObjectEnum<Obligation>
Obligation
@UML(identifier="MD_ObligationCode", specification=ISO_19115) public enum Obligation
Obligation of the element or entity. The enum values declared here are an exact copy of
the code list elements declared in the Obligation
code list
from the metadata package.
Enum Constant Summary | |
---|---|
CONDITIONAL
Element is required when a specific condition is met. |
|
FORBIDDEN
The element should always be null . |
|
MANDATORY
Element is always required. |
|
OPTIONAL
Element is not required. |
Method Summary | |
---|---|
static Obligation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Obligation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Obligation CONDITIONAL
@UML(identifier="optional", obligation=CONDITIONAL, specification=ISO_19115) public static final Obligation OPTIONAL
@UML(identifier="mandatory", obligation=CONDITIONAL, specification=ISO_19115) public static final Obligation MANDATORY
@Extension public static final Obligation FORBIDDEN
null
. This obligation code is used only when
a subinterface overrides an association and force it to a null
value.
An example is TemporalDatum.getAnchorPoint()
.
Method Detail |
---|
public static Obligation[] values()
for (Obligation c : Obligation.values()) System.out.println(c);
public static Obligation valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |