- All Implemented Interfaces:
Serializable
,Comparable<Classification>
@UML(identifier="MD_ClassificationCode",
specification=ISO_19115)
public final class Classification
extends CodeList<Classification>
Name of the handling restrictions on the dataset.
- Since:
- 2.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Classification
Available for someone who can be entrusted with information.static final Classification
Not for general disclosure.static final Classification
Kept or meant to be kept private, unknown, or hidden from all but a select group of people.static final Classification
Of the highest secrecy.static final Classification
Available for general disclosure. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind as this enum.static Classification
Returns the classification that matches the given string, or returns a new one if none match it.static Classification[]
values()
Returns the list ofClassification
s.
-
Field Details
-
UNCLASSIFIED
@UML(identifier="unclassified", obligation=CONDITIONAL, specification=ISO_19115) public static final Classification UNCLASSIFIEDAvailable for general disclosure. -
RESTRICTED
@UML(identifier="restricted", obligation=CONDITIONAL, specification=ISO_19115) public static final Classification RESTRICTEDNot for general disclosure. -
CONFIDENTIAL
@UML(identifier="confidential", obligation=CONDITIONAL, specification=ISO_19115) public static final Classification CONFIDENTIALAvailable for someone who can be entrusted with information. -
SECRET
@UML(identifier="secret", obligation=CONDITIONAL, specification=ISO_19115) public static final Classification SECRETKept or meant to be kept private, unknown, or hidden from all but a select group of people. -
TOP_SECRET
@UML(identifier="topSecret", obligation=CONDITIONAL, specification=ISO_19115) public static final Classification TOP_SECRETOf the highest secrecy.
-
-
Method Details
-
values
Returns the list ofClassification
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind as this enum.- Specified by:
family
in classCodeList<Classification>
- Returns:
- The codes of the same kind as this code.
-
valueOf
Returns the classification that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-