Enum METIS.rstatus_et
- java.lang.Object
-
- java.lang.Enum<METIS.rstatus_et>
-
- gov.nih.mipav.model.structures.jama.METIS.rstatus_et
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<METIS.rstatus_et>
- Enclosing class:
- METIS
static enum METIS.rstatus_et extends java.lang.Enum<METIS.rstatus_et>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description METIS_ERROR
METIS_ERROR_INPUT
METIS_ERROR_MEMORY
METIS_OK
-
Field Summary
Fields Modifier and Type Field Description private int
rstatus
-
Constructor Summary
Constructors Modifier Constructor Description private
rstatus_et(int rstatus)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static METIS.rstatus_et
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static METIS.rstatus_et[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METIS_OK
public static final METIS.rstatus_et METIS_OK
-
METIS_ERROR_INPUT
public static final METIS.rstatus_et METIS_ERROR_INPUT
-
METIS_ERROR_MEMORY
public static final METIS.rstatus_et METIS_ERROR_MEMORY
-
METIS_ERROR
public static final METIS.rstatus_et METIS_ERROR
-
-
Method Detail
-
values
public static METIS.rstatus_et[] 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 (METIS.rstatus_et c : METIS.rstatus_et.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static METIS.rstatus_et valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-