Package org.opencabstandard.provider
Class HOSContract.Clock
- java.lang.Object
-
- org.opencabstandard.provider.HOSContract.Clock
-
- All Implemented Interfaces:
android.os.Parcelable
- Enclosing class:
- HOSContract
public static class HOSContract.Clock extends java.lang.Object implements android.os.Parcelable
Object representing an HOS clock. A clock contains a descriptive label and the value. The value can be one of the types defined in theHOSContract.Clock.ValueType
enum.An example of the different types of clocks is shown in the image below:
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HOSContract.Clock.ValueType
Allowed types for valueType field.
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<HOSContract.Clock>
CREATOR
-
Constructor Summary
Constructors Constructor Description Clock()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
java.lang.String
getLabel()
Get the label for the clock.java.lang.String
getValue()
Get the value for the clock.HOSContract.Clock.ValueType
getValueType()
Get the value typeboolean
isImportant()
Is the important flag set.boolean
isLimitsDrivingRange()
Is the limitsDrivingRange flag set.void
setImportant(boolean important)
Indicates the important clock.void
setLabel(java.lang.String label)
Label for the clock.void
setLimitsDrivingRange(boolean limitsDrivingRange)
Indicates which clock most tightly limits the time a driver can spend driving.void
setValue(java.lang.String value)
The value of the clock.void
setValueType(HOSContract.Clock.ValueType valueType)
The value type of the clock.void
writeToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
CREATOR
public static android.os.Parcelable.Creator<HOSContract.Clock> CREATOR
-
-
Method Detail
-
setLabel
public void setLabel(java.lang.String label)
Label for the clock.- Parameters:
label
- The clock label.
-
setValue
public void setValue(java.lang.String value)
The value of the clock. The format of this field will depend on theHOSContract.Clock
.valueType field.- Parameters:
value
- The clock value.
-
setValueType
public void setValueType(HOSContract.Clock.ValueType valueType)
The value type of the clock. SeeHOSContract.Clock.ValueType
for the possible types.- Parameters:
valueType
- The valueType for the clock.
-
setImportant
public void setImportant(boolean important)
Indicates the important clock. Consumers may interpret this flag in multiple ways, but one possible use is to determine which clock to display in a compact view layout that only permits a single clock to be shown.- Parameters:
important
- Flag indicating which is the most important clock in the list.
-
setLimitsDrivingRange
public void setLimitsDrivingRange(boolean limitsDrivingRange)
Indicates which clock most tightly limits the time a driver can spend driving. Consumers may interpret this flag in multiple ways, but one possible use is to indicate where a driver needs to plan to shut down when planning a route.- Parameters:
limitsDrivingRange
- Flag indicating which clock limits the driving range.
-
getLabel
public java.lang.String getLabel()
Get the label for the clock.- Returns:
- The label for the clock.
-
getValue
public java.lang.String getValue()
Get the value for the clock.- Returns:
- The value for the clock.
-
getValueType
public HOSContract.Clock.ValueType getValueType()
Get the value type- Returns:
- The value type for the clock.
-
isImportant
public boolean isImportant()
Is the important flag set.- Returns:
- Flag indicating this is the most important clock.
-
isLimitsDrivingRange
public boolean isLimitsDrivingRange()
Is the limitsDrivingRange flag set.- Returns:
- Flag indicating this clock will limit the driving range.
-
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
-
-