|
||||||||||
| 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
Whether an element is mandatory, optional or have other obligation.
The enumeration values declared here duplicate 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 |
|---|
@UML(identifier="conditional",
specification=ISO_19115)
public static final Obligation CONDITIONAL
@UML(identifier="optional",
specification=ISO_19115)
public static final Obligation OPTIONAL
@UML(identifier="mandatory",
specification=ISO_19115)
public static final Obligation MANDATORY
public static final Obligation FORBIDDEN
null. This obligation code is used only when
a sub-interface overrides an association and force it to a null value.
An example is TemporalDatum.getAnchorPoint().
Departure from OGC/ISO specification:
ISO specifications sometime override a parent method with a comment saying that the method is not allowed for a particular class. Since there is no construct in Java for expressing this constraint in the method signature, GeoAPI defines a {@code FORBIDDEN} obligation (not in original ISO specifications) to be used with the@UMLannotation and which adds a flag in the Java documentation.
| 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 | |||||||||