@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class WorldCount extends Object implements Serializable, Cloneable, StructuredPojo
The number of worlds that will be created. You can configure the number of unique floorplans and the number of unique
interiors for each floor plan. For example, if you want 1 world with 20 unique interiors, you set
floorplanCount = 1
and interiorCountPerFloorplan = 20
. This will result in 20 worlds (
floorplanCount
* interiorCountPerFloorplan)
.
If you set floorplanCount = 4
and interiorCountPerFloorplan = 5
, there will be 20 worlds
with 5 unique floor plans.
Constructor and Description |
---|
WorldCount() |
Modifier and Type | Method and Description |
---|---|
WorldCount |
clone() |
boolean |
equals(Object obj) |
Integer |
getFloorplanCount()
The number of unique floorplans.
|
Integer |
getInteriorCountPerFloorplan()
The number of unique interiors per floorplan.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setFloorplanCount(Integer floorplanCount)
The number of unique floorplans.
|
void |
setInteriorCountPerFloorplan(Integer interiorCountPerFloorplan)
The number of unique interiors per floorplan.
|
String |
toString()
Returns a string representation of this object.
|
WorldCount |
withFloorplanCount(Integer floorplanCount)
The number of unique floorplans.
|
WorldCount |
withInteriorCountPerFloorplan(Integer interiorCountPerFloorplan)
The number of unique interiors per floorplan.
|
public void setFloorplanCount(Integer floorplanCount)
The number of unique floorplans.
floorplanCount
- The number of unique floorplans.public Integer getFloorplanCount()
The number of unique floorplans.
public WorldCount withFloorplanCount(Integer floorplanCount)
The number of unique floorplans.
floorplanCount
- The number of unique floorplans.public void setInteriorCountPerFloorplan(Integer interiorCountPerFloorplan)
The number of unique interiors per floorplan.
interiorCountPerFloorplan
- The number of unique interiors per floorplan.public Integer getInteriorCountPerFloorplan()
The number of unique interiors per floorplan.
public WorldCount withInteriorCountPerFloorplan(Integer interiorCountPerFloorplan)
The number of unique interiors per floorplan.
interiorCountPerFloorplan
- The number of unique interiors per floorplan.public String toString()
toString
in class Object
Object.toString()
public WorldCount clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.