Package dap4.dap4lib.netcdf
Enum Nc4Notes.NoteSort
- java.lang.Object
-
- java.lang.Enum<Nc4Notes.NoteSort>
-
- dap4.dap4lib.netcdf.Nc4Notes.NoteSort
-
- All Implemented Interfaces:
Serializable,Comparable<Nc4Notes.NoteSort>
- Enclosing class:
- Nc4Notes
public static enum Nc4Notes.NoteSort extends Enum<Nc4Notes.NoteSort>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Nc4Notes.NoteSortvalueOf(String name)Returns the enum constant of this type with the specified name.static Nc4Notes.NoteSort[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE
public static final Nc4Notes.NoteSort TYPE
-
VAR
public static final Nc4Notes.NoteSort VAR
-
GROUP
public static final Nc4Notes.NoteSort GROUP
-
DIM
public static final Nc4Notes.NoteSort DIM
-
-
Method Detail
-
values
public static Nc4Notes.NoteSort[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Nc4Notes.NoteSort c : Nc4Notes.NoteSort.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Nc4Notes.NoteSort valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-