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 SummaryEnum Constants Enum Constant Description METIS_ERRORMETIS_ERROR_INPUTMETIS_ERROR_MEMORYMETIS_OK
 - 
Field SummaryFields Modifier and Type Field Description private intrstatus
 - 
Constructor SummaryConstructors Modifier Constructor Description privaterstatus_et(int rstatus)
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static METIS.rstatus_etvalueOf(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_OKpublic static final METIS.rstatus_et METIS_OK 
 - 
METIS_ERROR_INPUTpublic static final METIS.rstatus_et METIS_ERROR_INPUT 
 - 
METIS_ERROR_MEMORYpublic static final METIS.rstatus_et METIS_ERROR_MEMORY 
 - 
METIS_ERRORpublic static final METIS.rstatus_et METIS_ERROR 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-