Uses of Class
org.mars_sim.msp.simulation.resource.Phase

Packages that use Phase
org.mars_sim.msp.simulation Contains classes for creating a virtual Mars. 
org.mars_sim.msp.simulation.equipment Contains classes involving equipment units. 
org.mars_sim.msp.simulation.resource Contains classes for resource specific items. 
 

Uses of Phase in org.mars_sim.msp.simulation
 

Methods in org.mars_sim.msp.simulation with parameters of type Phase
 void Inventory.addAmountResourcePhaseCapacity(Phase phase, double capacity)
          Adds capacity for a resource phase.
 

Uses of Phase in org.mars_sim.msp.simulation.equipment
 

Methods in org.mars_sim.msp.simulation.equipment that return Phase
 Phase Bag.getContainingResourcePhase()
          Gets the phase of resources this container can hold.
 Phase Container.getContainingResourcePhase()
          Gets the phase of resources this container can hold.
 Phase SpecimenContainer.getContainingResourcePhase()
          Gets the phase of resources this container can hold.
 Phase Barrel.getContainingResourcePhase()
          Gets the phase of resources this container can hold.
 Phase GasCanister.getContainingResourcePhase()
          Gets the phase of resources this container can hold.
 

Uses of Phase in org.mars_sim.msp.simulation.resource
 

Fields in org.mars_sim.msp.simulation.resource declared as Phase
static Phase Phase.GAS
           
static Phase Phase.LIQUID
           
static Phase Phase.SOLID
           
 

Methods in org.mars_sim.msp.simulation.resource that return Phase
static Phase Phase.findPhase(java.lang.String name)
          Finds a phase by name.
 Phase AmountResource.getPhase()
          Gets the resources material phase.
 

Methods in org.mars_sim.msp.simulation.resource that return types with arguments of type Phase
 java.util.Map<Phase,java.lang.Double> AmountResourceStorage.getAmountResourcePhaseCapacities()
          Gets the phase capacities in storage.
static java.util.Set<Phase> Phase.getPhases()
          Gets a ummutable set of all the phases.
 

Methods in org.mars_sim.msp.simulation.resource with parameters of type Phase
 void AmountResourceStorage.addAmountResourcePhaseCapacity(Phase phase, double capacity)
          Adds capacity for a resource phase.
 

Constructors in org.mars_sim.msp.simulation.resource with parameters of type Phase
AmountResource(java.lang.String name, Phase phase, boolean lifeSupport)
          Constructor with life support parameter.