Package | Description |
---|---|
org.eclipse.ice.reactor | |
org.eclipse.ice.reactor.pwr |
Modifier and Type | Method and Description |
---|---|
static AssemblyType |
AssemblyType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssemblyType[] |
AssemblyType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
PressurizedWaterReactor.addAssembly(AssemblyType type,
LWRComponent assembly)
This operation adds an assembly of the specified AssemblyType to the
reactor and return true.
|
LWRComponent |
PressurizedWaterReactor.getAssemblyByLocation(AssemblyType type,
int row,
int column)
Returns the assembly of the specified type at the specified column and
row in the reactor or null if one is not found at the provided location.
|
LWRComponent |
PressurizedWaterReactor.getAssemblyByName(AssemblyType type,
java.lang.String name)
Returns the assembly of the specified type with the provided name or null
if an assembly of that type and name does not exist.
|
LWRDataProvider |
PressurizedWaterReactor.getAssemblyDataProviderAtLocation(AssemblyType type,
int row,
int column)
Returns the data provider for the assembly of the specified type at the
given location or null if it does not exist.
|
java.util.ArrayList<java.lang.String> |
PressurizedWaterReactor.getAssemblyNames(AssemblyType type)
Returns an list of names for each assembly in the reactor of the
specified type.
|
int |
PressurizedWaterReactor.getNumberOfAssemblies(AssemblyType type)
This operation returns the number of assemblies of the specified type.
|
boolean |
PressurizedWaterReactor.removeAssembly(AssemblyType type,
java.lang.String assemblyName)
Removes an assembly of the specified type from the collection of
assemblies.
|
boolean |
PressurizedWaterReactor.removeAssemblyFromLocation(AssemblyType type,
int row,
int column)
Removes the assembly at the provided location and of the specified if it
exists.
|
boolean |
PressurizedWaterReactor.setAssemblyLocation(AssemblyType type,
java.lang.String assemblyName,
int row,
int column)
Sets the location for the assembly of the specified type with the
provided name.
|