Enum METIS.mdbglvl_et
- java.lang.Object
-
- java.lang.Enum<METIS.mdbglvl_et>
-
- gov.nih.mipav.model.structures.jama.METIS.mdbglvl_et
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<METIS.mdbglvl_et>
- Enclosing class:
- METIS
static enum METIS.mdbglvl_et extends java.lang.Enum<METIS.mdbglvl_et>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description METIS_DBG_COARSENMETIS_DBG_CONNINFOMETIS_DBG_CONTIGINFOMETIS_DBG_INFOMETIS_DBG_IPARTMETIS_DBG_MEMORYMETIS_DBG_MOVEINFOMETIS_DBG_REFINEMETIS_DBG_SEPINFOMETIS_DBG_TIME
-
Field Summary
Fields Modifier and Type Field Description private intmdbglvl
-
Constructor Summary
Constructors Modifier Constructor Description privatemdbglvl_et(int mdbglvl)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static METIS.mdbglvl_etvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static METIS.mdbglvl_et[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METIS_DBG_INFO
public static final METIS.mdbglvl_et METIS_DBG_INFO
-
METIS_DBG_TIME
public static final METIS.mdbglvl_et METIS_DBG_TIME
-
METIS_DBG_COARSEN
public static final METIS.mdbglvl_et METIS_DBG_COARSEN
-
METIS_DBG_REFINE
public static final METIS.mdbglvl_et METIS_DBG_REFINE
-
METIS_DBG_IPART
public static final METIS.mdbglvl_et METIS_DBG_IPART
-
METIS_DBG_MOVEINFO
public static final METIS.mdbglvl_et METIS_DBG_MOVEINFO
-
METIS_DBG_SEPINFO
public static final METIS.mdbglvl_et METIS_DBG_SEPINFO
-
METIS_DBG_CONNINFO
public static final METIS.mdbglvl_et METIS_DBG_CONNINFO
-
METIS_DBG_CONTIGINFO
public static final METIS.mdbglvl_et METIS_DBG_CONTIGINFO
-
METIS_DBG_MEMORY
public static final METIS.mdbglvl_et METIS_DBG_MEMORY
-
-
Method Detail
-
values
public static METIS.mdbglvl_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.mdbglvl_et c : METIS.mdbglvl_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.mdbglvl_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
-
-