Class OnLineFunction
- Object
-
- CodeList<OnLineFunction>
-
- OnLineFunction
-
- All Implemented Interfaces:
Serializable,Comparable<OnLineFunction>
@UML(identifier="CI_OnLineFunctionCode", specification=ISO_19115) public final class OnLineFunction extends CodeList<OnLineFunction>
Class of information to which the referencing entity applies.- Since:
- GeoAPI 2.0
- Author:
- Martin Desruisseaux (IRD)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static OnLineFunctionDOWNLOADOnline instructions for transferring data from one storage device or system to another.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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description OnLineFunction[]family()Returns the list of enumerations of the same kind than this enum.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.
-
-
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 enumerations of the same kind than this enum.- Specified by:
familyin classCodeList<OnLineFunction>- Returns:
- The codes of the same kind than this code.
-
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.- Parameters:
code- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-
-