Class NeonBuildingFloor
- java.lang.Object
-
- com.trx.neon.api.neonEnvironment.model.NeonBuildingFloor
-
- All Implemented Interfaces:
android.os.Parcelable
public class NeonBuildingFloor extends java.lang.Object implements android.os.Parcelable
A Neon Building Floor is identified by a zero-based floorNumber, and contains a building outline and potentially a floorplan ID and georeferencing information for that image
-
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<NeonBuildingFloor>
CREATOR
-
Constructor Summary
Constructors Constructor Description NeonBuildingFloor(int floorNumber, java.lang.String label, NeonFloorOutline outline, java.util.ArrayList<LatLong> floorPlanCorners, java.lang.String floorPlanImageID)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
int
getFloorNumber()
java.util.ArrayList<LatLong>
getFloorPlanCorners()
java.lang.String
getFloorPlanImageID()
java.lang.String
getLabel()
NeonFloorOutline
getOutline()
boolean
hasFloorPlan()
void
writeToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
CREATOR
public static final android.os.Parcelable.Creator<NeonBuildingFloor> CREATOR
-
-
Constructor Detail
-
NeonBuildingFloor
public NeonBuildingFloor(int floorNumber, java.lang.String label, NeonFloorOutline outline, java.util.ArrayList<LatLong> floorPlanCorners, java.lang.String floorPlanImageID)
-
-
Method Detail
-
getFloorNumber
public int getFloorNumber()
-
getLabel
public java.lang.String getLabel()
-
getOutline
public NeonFloorOutline getOutline()
-
getFloorPlanImageID
public java.lang.String getFloorPlanImageID()
-
getFloorPlanCorners
public java.util.ArrayList<LatLong> getFloorPlanCorners()
-
hasFloorPlan
public boolean hasFloorPlan()
- Returns:
- Whether the building floor has an associated floor plan image
-
describeContents
public int describeContents()
- Specified by:
describeContents
in interfaceandroid.os.Parcelable
-
writeToParcel
public void writeToParcel(android.os.Parcel dest, int flags)
- Specified by:
writeToParcel
in interfaceandroid.os.Parcelable
-
-