Enum METIS.moptions_et
- java.lang.Object
-
- java.lang.Enum<METIS.moptions_et>
-
- gov.nih.mipav.model.structures.jama.METIS.moptions_et
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<METIS.moptions_et>
- Enclosing class:
- METIS
static enum METIS.moptions_et extends java.lang.Enum<METIS.moptions_et>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description private int
moptions
-
Constructor Summary
Constructors Modifier Constructor Description private
moptions_et(int moptions)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static METIS.moptions_et
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static METIS.moptions_et[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METIS_OPTION_PTYPE
public static final METIS.moptions_et METIS_OPTION_PTYPE
-
METIS_OPTION_OBJTYPE
public static final METIS.moptions_et METIS_OPTION_OBJTYPE
-
METIS_OPTION_CTYPE
public static final METIS.moptions_et METIS_OPTION_CTYPE
-
METIS_OPTION_IPTYPE
public static final METIS.moptions_et METIS_OPTION_IPTYPE
-
METIS_OPTION_RTYPE
public static final METIS.moptions_et METIS_OPTION_RTYPE
-
METIS_OPTION_DBGLVL
public static final METIS.moptions_et METIS_OPTION_DBGLVL
-
METIS_OPTION_NITER
public static final METIS.moptions_et METIS_OPTION_NITER
-
METIS_OPTION_NCUTS
public static final METIS.moptions_et METIS_OPTION_NCUTS
-
METIS_OPTION_SEED
public static final METIS.moptions_et METIS_OPTION_SEED
-
METIS_OPTION_NO2HOP
public static final METIS.moptions_et METIS_OPTION_NO2HOP
-
METIS_OPTION_MINCONN
public static final METIS.moptions_et METIS_OPTION_MINCONN
-
METIS_OPTION_CONTIG
public static final METIS.moptions_et METIS_OPTION_CONTIG
-
METIS_OPTION_COMPRESS
public static final METIS.moptions_et METIS_OPTION_COMPRESS
-
METIS_OPTION_CCORDER
public static final METIS.moptions_et METIS_OPTION_CCORDER
-
METIS_OPTION_PFACTOR
public static final METIS.moptions_et METIS_OPTION_PFACTOR
-
METIS_OPTION_NSEPS
public static final METIS.moptions_et METIS_OPTION_NSEPS
-
METIS_OPTION_UFACTOR
public static final METIS.moptions_et METIS_OPTION_UFACTOR
-
METIS_OPTION_NUMBERING
public static final METIS.moptions_et METIS_OPTION_NUMBERING
-
METIS_OPTION_HELP
public static final METIS.moptions_et METIS_OPTION_HELP
-
METIS_OPTION_TPWGTS
public static final METIS.moptions_et METIS_OPTION_TPWGTS
-
METIS_OPTION_NCOMMON
public static final METIS.moptions_et METIS_OPTION_NCOMMON
-
METIS_OPTION_NOOUTPUT
public static final METIS.moptions_et METIS_OPTION_NOOUTPUT
-
METIS_OPTION_BALANCE
public static final METIS.moptions_et METIS_OPTION_BALANCE
-
METIS_OPTION_GTYPE
public static final METIS.moptions_et METIS_OPTION_GTYPE
-
METIS_OPTION_UBVEC
public static final METIS.moptions_et METIS_OPTION_UBVEC
-
-
Method Detail
-
values
public static METIS.moptions_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.moptions_et c : METIS.moptions_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.moptions_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
-
-