Package org.opengis.metadata.citation
Class OnLineFunction
- Object
-
- CodeList<OnLineFunction>
-
- OnLineFunction
-
- All Implemented Interfaces:
Serializable,Comparable<OnLineFunction>,ControlledVocabulary
@UML(identifier="CI_OnLineFunctionCode", specification=ISO_19115) public final class OnLineFunction extends CodeList<OnLineFunction>
Class of information to which the referencing entity applies.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static OnLineFunctionBROWSE_GRAPHICBrowse graphic provided.static OnLineFunctionBROWSINGOnline browsing provided.static OnLineFunctionCOMPLETE_METADATAComplete metadata provided.static OnLineFunctionDOWNLOADOnline instructions for transferring data from one storage device or system to another.static OnLineFunctionEMAIL_SERVICEOnline email service provided.static OnLineFunctionFILE_ACCESSOnline file access provided.static OnLineFunctionINFORMATIONOnline information about the resource.static OnLineFunctionOFFLINE_ACCESSOnline instructions for requesting the resource from the provider.static OnLineFunctionORDEROnline order process for obtaining the resource.static OnLineFunctionSEARCHOnline search interface for seeking out information about the resource.static OnLineFunctionUPLOADOnline resource upload capability provided.
-
Method Summary
Modifier and Type Method Description OnLineFunction[]family()Returns the list of codes of the same kind than this code list element.static OnLineFunctionvalueOf(String code)Returns the on line function that matches the given string, or returns a new one if none match it.static OnLineFunction[]values()Returns the list ofOnLineFunctions.
-
-
-
Field Detail
-
DOWNLOAD
@UML(identifier="download", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction DOWNLOAD
Online instructions for transferring data from one storage device or system to another.
-
INFORMATION
@UML(identifier="information", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction INFORMATION
Online information about the resource.
-
OFFLINE_ACCESS
@UML(identifier="offlineAccess", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction OFFLINE_ACCESS
Online instructions for requesting the resource from the provider.
-
ORDER
@UML(identifier="order", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction ORDER
Online order process for obtaining the resource.
-
SEARCH
@UML(identifier="search", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction SEARCH
Online search interface for seeking out information about the resource.
-
COMPLETE_METADATA
@UML(identifier="completeMetadata", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction COMPLETE_METADATA
Complete metadata provided.- Since:
- 3.1
-
BROWSE_GRAPHIC
@UML(identifier="browseGraphic", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction BROWSE_GRAPHIC
Browse graphic provided.- Since:
- 3.1
-
UPLOAD
@UML(identifier="upload", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction UPLOAD
Online resource upload capability provided.- Since:
- 3.1
-
EMAIL_SERVICE
@UML(identifier="emailService", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction EMAIL_SERVICE
Online email service provided.- Since:
- 3.1
-
BROWSING
@UML(identifier="browsing", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction BROWSING
Online browsing provided.- Since:
- 3.1
-
FILE_ACCESS
@UML(identifier="fileAccess", obligation=CONDITIONAL, specification=ISO_19115) public static final OnLineFunction FILE_ACCESS
Online file access provided.- Since:
- 3.1
-
-
Method Detail
-
values
public static OnLineFunction[] values()
Returns the list ofOnLineFunctions.- Returns:
- the list of codes declared in the current JVM.
-
family
public OnLineFunction[] family()
Returns the list of codes of the same kind than this code list element. Invoking this method is equivalent to invokingvalues(), except that this method can be invoked on an instance of the parentCodeListclass.- Specified by:
familyin interfaceControlledVocabulary- Specified by:
familyin classCodeList<OnLineFunction>- Returns:
- all code values for this code list.
-
valueOf
public static OnLineFunction valueOf(String code)
Returns the on line function that matches the given string, or returns a new one if none match it. More specifically, this methods returns the first instance for whichname().equals(code)returnstrue. If no existing instance is found, then a new one is created for the given name.- Parameters:
code- the name of the code to fetch or to create.- Returns:
- a code matching the given name.
-
-