public enum HDF5LWRTagType extends java.lang.Enum<HDF5LWRTagType>
Represents the LWRComponentTypes (stack, material, etc) for the object.
Enum Constant and Description |
---|
BWREACTOR
Represents a BWReactor.
|
CONTROL_BANK
Represents the ControlBank.
|
FUEL_ASSEMBLY
Represents the FuelAssembly.
|
GRID_LABEL_PROVIDER
Represents the GridLabelProvider.
|
INCORE_INSTRUMENT
Represents the IncoreInstrument.
|
LWRCOMPONENT
Represents a generic LWRComponent.
|
LWRCOMPOSITE
Represents a generic LWRComposite.
|
LWREACTOR
Represents a LWReactor.
|
LWRGRIDMANAGER
Represents a LWRGridManager.
|
LWRROD
Represents the LWRRod.
|
MATERIAL
Represents the Material.
|
MATERIALBLOCK
Represents a MaterialBlock.
|
PWRASSEMBLY
Represents a PWRAssembly.
|
PWREACTOR
Represents the PWReactor.
|
RING
Represents the Ring.
|
ROD_CLUSTER_ASSEMBLY
Represents the Rod Cluster Assembly.
|
TUBE
Represents the Tube.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns the string name of the enumerated value.
|
static HDF5LWRTagType |
toType(java.lang.String name)
Returns the type of enumeration keyed on name.
|
static HDF5LWRTagType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HDF5LWRTagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HDF5LWRTagType CONTROL_BANK
Represents the ControlBank.
public static final HDF5LWRTagType FUEL_ASSEMBLY
Represents the FuelAssembly.
public static final HDF5LWRTagType GRID_LABEL_PROVIDER
Represents the GridLabelProvider.
public static final HDF5LWRTagType INCORE_INSTRUMENT
Represents the IncoreInstrument.
public static final HDF5LWRTagType LWRROD
Represents the LWRRod.
public static final HDF5LWRTagType MATERIAL
Represents the Material.
public static final HDF5LWRTagType PWREACTOR
Represents the PWReactor.
public static final HDF5LWRTagType RING
Represents the Ring.
public static final HDF5LWRTagType ROD_CLUSTER_ASSEMBLY
Represents the Rod Cluster Assembly.
public static final HDF5LWRTagType TUBE
Represents the Tube.
public static final HDF5LWRTagType LWRCOMPONENT
Represents a generic LWRComponent.
public static final HDF5LWRTagType LWRCOMPOSITE
Represents a generic LWRComposite.
public static final HDF5LWRTagType LWREACTOR
Represents a LWReactor.
public static final HDF5LWRTagType BWREACTOR
Represents a BWReactor.
public static final HDF5LWRTagType PWRASSEMBLY
Represents a PWRAssembly.
public static final HDF5LWRTagType LWRGRIDMANAGER
Represents a LWRGridManager.
public static final HDF5LWRTagType MATERIALBLOCK
Represents a MaterialBlock.
public static HDF5LWRTagType[] values()
for (HDF5LWRTagType c : HDF5LWRTagType.values()) System.out.println(c);
public static HDF5LWRTagType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static HDF5LWRTagType toType(java.lang.String name)
Returns the type of enumeration keyed on name. Returns null if invalid name.
name
- The name associated with the enumerated value.
The type of enumeration.
public java.lang.String toString()
Returns the string name of the enumerated value.
toString
in class java.lang.Enum<HDF5LWRTagType>
The name of the enumerated value.