Class MediumFormat
- java.lang.Object
-
- org.opengis.util.CodeList<MediumFormat>
-
- org.opengis.metadata.distribution.MediumFormat
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MediumFormat>
@UML(identifier="MD_MediumFormatCode", specification=ISO_19115) public final class MediumFormat extends CodeList<MediumFormat>
Method used to write to the medium.- Since:
- 2.0
- Version:
- 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static MediumFormat
CPIO
CoPy In / Out (UNIX file format and command).static MediumFormat
HIGH_SIERRA
High sierra file system.static MediumFormat
ISO_9660
Information processing - volume and file structure of CD-ROM.static MediumFormat
ISO_9660_APPLE_HFS
Hierarchical file system (Macintosh).static MediumFormat
ISO_9660_ROCK_RIDGE
Rock ridge interchange protocol (UNIX).private static long
serialVersionUID
Serial number for compatibility with different versions.static MediumFormat
TAR
Tap ARchive.private static java.util.List<MediumFormat>
VALUES
List of all enumerations of this type.
-
Constructor Summary
Constructors Modifier Constructor Description private
MediumFormat(java.lang.String name)
Constructs an enum with the given name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MediumFormat[]
family()
Returns the list of enumerations of the same kind than this enum.static MediumFormat
valueOf(java.lang.String code)
Returns the medium format that matches the given string, or returns a new one if none match it.static MediumFormat[]
values()
Returns the list ofMediumFormat
s.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for compatibility with different versions.- See Also:
- Constant Field Values
-
VALUES
private static final java.util.List<MediumFormat> VALUES
List of all enumerations of this type. Must be declared before any enum declaration.
-
CPIO
@UML(identifier="cpio", obligation=CONDITIONAL, specification=ISO_19115) public static final MediumFormat CPIO
CoPy In / Out (UNIX file format and command).
-
TAR
@UML(identifier="tar", obligation=CONDITIONAL, specification=ISO_19115) public static final MediumFormat TAR
Tap ARchive.
-
HIGH_SIERRA
@UML(identifier="highSierra", obligation=CONDITIONAL, specification=ISO_19115) public static final MediumFormat HIGH_SIERRA
High sierra file system.
-
ISO_9660
@UML(identifier="iso9660", obligation=CONDITIONAL, specification=ISO_19115) public static final MediumFormat ISO_9660
Information processing - volume and file structure of CD-ROM.
-
ISO_9660_ROCK_RIDGE
@UML(identifier="iso9660RockRidge", obligation=CONDITIONAL, specification=ISO_19115) public static final MediumFormat ISO_9660_ROCK_RIDGE
Rock ridge interchange protocol (UNIX).
-
ISO_9660_APPLE_HFS
@UML(identifier="iso9660AppleHFS", obligation=CONDITIONAL, specification=ISO_19115) public static final MediumFormat ISO_9660_APPLE_HFS
Hierarchical file system (Macintosh).
-
-
Constructor Detail
-
MediumFormat
private MediumFormat(java.lang.String name)
Constructs an enum with the given name. The new enum is automatically added to the list returned byvalues()
.- Parameters:
name
- The enum name. This name must not be in use by an other enum of this type.
-
-
Method Detail
-
values
public static MediumFormat[] values()
Returns the list ofMediumFormat
s.- Returns:
- The list of codes declared in the current JVM.
-
family
public MediumFormat[] family()
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<MediumFormat>
- Returns:
- The codes of the same kind than this code.
-
valueOf
public static MediumFormat valueOf(java.lang.String code)
Returns the medium format 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.
-
-