Class FindAndPickBadgeConfiguration
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class FindAndPickBadgeConfiguration implements Parcelable
Configuration of the round badge on find and pick ar layer.
-
-
Field Summary
Fields Modifier and Type Field Description private BadgeStyle
partiallyScanned
private BadgeStyle
rejected
private BadgeStyle
completed
-
Constructor Summary
Constructors Constructor Description FindAndPickBadgeConfiguration(Map<String, Object> source)
FindAndPickBadgeConfiguration(JSONObject json)
FindAndPickBadgeConfiguration(BadgeStyle partiallyScanned, BadgeStyle rejected, BadgeStyle completed)
-
Method Summary
Modifier and Type Method Description final BadgeStyle
getPartiallyScanned()
Appearance of the badge when a barcode is partially scanned. final Unit
setPartiallyScanned(BadgeStyle partiallyScanned)
Appearance of the badge when a barcode is partially scanned. final BadgeStyle
getRejected()
Appearance of the badge when a barcode is rejected. final Unit
setRejected(BadgeStyle rejected)
Appearance of the badge when a barcode is rejected. final BadgeStyle
getCompleted()
Appearance of the badge when a barcode is completed. final Unit
setCompleted(BadgeStyle completed)
Appearance of the badge when a barcode is completed. final JSONObject
toJson()
final static FindAndPickBadgeConfiguration
default()
-
-
Constructor Detail
-
FindAndPickBadgeConfiguration
FindAndPickBadgeConfiguration(JSONObject json)
-
FindAndPickBadgeConfiguration
FindAndPickBadgeConfiguration(BadgeStyle partiallyScanned, BadgeStyle rejected, BadgeStyle completed)
-
-
Method Detail
-
getPartiallyScanned
final BadgeStyle getPartiallyScanned()
Appearance of the badge when a barcode is partially scanned.
-
setPartiallyScanned
final Unit setPartiallyScanned(BadgeStyle partiallyScanned)
Appearance of the badge when a barcode is partially scanned.
-
getRejected
final BadgeStyle getRejected()
Appearance of the badge when a barcode is rejected.
-
setRejected
final Unit setRejected(BadgeStyle rejected)
Appearance of the badge when a barcode is rejected.
-
getCompleted
final BadgeStyle getCompleted()
Appearance of the badge when a barcode is completed.
-
setCompleted
final Unit setCompleted(BadgeStyle completed)
Appearance of the badge when a barcode is completed.
-
toJson
final JSONObject toJson()
-
default
final static FindAndPickBadgeConfiguration default()
-
-
-
-