Class LicensePlateResult
-
- All Implemented Interfaces:
-
java.io.Serializable
public class LicensePlateResult implements Serializable
Describes result information of scanning license plates
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumLicensePlateResult.AreaThe area information
-
Field Summary
Fields Modifier and Type Field Description public Stringcountrypublic LicensePlateResult.Areaareapublic StringplateTextpublic BooleanvehicleInspectionFoundpublic StringvehicleInspectionYearpublic StringvehicleInspectionMonthpublic BooleanvehicleInspectionValid
-
Constructor Summary
Constructors Constructor Description LicensePlateResult()
-
Method Summary
Modifier and Type Method Description StringgetCountry()The country information (Required) voidsetCountry(String country)The country information (Required) LicensePlateResult.AreagetArea()The area information voidsetArea(LicensePlateResult.Area area)The area information StringgetPlateText()The plate text (Required) voidsetPlateText(String plateText)The plate text (Required) BooleangetVehicleInspectionFound()(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. voidsetVehicleInspectionFound(Boolean vehicleInspectionFound)(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. StringgetVehicleInspectionYear()(Optional) The year depicted on the Visual Inspection Sticker. voidsetVehicleInspectionYear(String vehicleInspectionYear)(Optional) The year depicted on the Visual Inspection Sticker. StringgetVehicleInspectionMonth()(Optional) The month depicted on the Visual Inspection Sticker. voidsetVehicleInspectionMonth(String vehicleInspectionMonth)(Optional) The month depicted on the Visual Inspection Sticker. BooleangetVehicleInspectionValid()(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future. voidsetVehicleInspectionValid(Boolean vehicleInspectionValid)(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future. StringtoString()inthashCode()booleanequals(Object other)-
-
Method Detail
-
getCountry
String getCountry()
The country information (Required)
-
setCountry
void setCountry(String country)
The country information (Required)
-
getArea
LicensePlateResult.Area getArea()
The area information
-
setArea
void setArea(LicensePlateResult.Area area)
The area information
-
getPlateText
String getPlateText()
The plate text (Required)
-
setPlateText
void setPlateText(String plateText)
The plate text (Required)
-
getVehicleInspectionFound
Boolean getVehicleInspectionFound()
(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. If the config is MANDATORY, this field is always true.
-
setVehicleInspectionFound
void setVehicleInspectionFound(Boolean vehicleInspectionFound)
(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. If the config is MANDATORY, this field is always true.
-
getVehicleInspectionYear
String getVehicleInspectionYear()
(Optional) The year depicted on the Visual Inspection Sticker.
-
setVehicleInspectionYear
void setVehicleInspectionYear(String vehicleInspectionYear)
(Optional) The year depicted on the Visual Inspection Sticker.
-
getVehicleInspectionMonth
String getVehicleInspectionMonth()
(Optional) The month depicted on the Visual Inspection Sticker.
-
setVehicleInspectionMonth
void setVehicleInspectionMonth(String vehicleInspectionMonth)
(Optional) The month depicted on the Visual Inspection Sticker.
-
getVehicleInspectionValid
Boolean getVehicleInspectionValid()
(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future.
-
setVehicleInspectionValid
void setVehicleInspectionValid(Boolean vehicleInspectionValid)
(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future.
-
hashCode
int hashCode()
-
-
-
-