Enum AuthorityOperationTypeEnum
- java.lang.Object
-
- java.lang.Enum<AuthorityOperationTypeEnum>
-
- eu.datex2.siri14.schema._1_0._1_0.AuthorityOperationTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AuthorityOperationTypeEnum>
public enum AuthorityOperationTypeEnum extends Enum<AuthorityOperationTypeEnum>
Java class for AuthorityOperationTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AuthorityOperationTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="policeCheckPoint"/> <enumeration value="policeInvestigation"/> <enumeration value="survey"/> <enumeration value="vehicleInspectionCheckPoint"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OTHEROther than as defined in this enumeration.POLICE_CHECK_POINTA permanent or temporary operation established on or adjacent to the carriageway for use by police or other authorities.POLICE_INVESTIGATIONA temporary operation established on or adjacent to the carriageway by the police associated with an ongoing investigation.SURVEYA permanent or temporary operation established on or adjacent to the carriageway for the purpose of gathering statistics or other traffic related information.VEHICLE_INSPECTION_CHECK_POINTA permanent or temporary operation established on or adjacent to the carriageway for inspection of vehicles by authorities (e.g.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthorityOperationTypeEnumfromValue(String v)Stringvalue()static AuthorityOperationTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthorityOperationTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POLICE_CHECK_POINT
public static final AuthorityOperationTypeEnum POLICE_CHECK_POINT
A permanent or temporary operation established on or adjacent to the carriageway for use by police or other authorities.
-
POLICE_INVESTIGATION
public static final AuthorityOperationTypeEnum POLICE_INVESTIGATION
A temporary operation established on or adjacent to the carriageway by the police associated with an ongoing investigation.
-
SURVEY
public static final AuthorityOperationTypeEnum SURVEY
A permanent or temporary operation established on or adjacent to the carriageway for the purpose of gathering statistics or other traffic related information.
-
VEHICLE_INSPECTION_CHECK_POINT
public static final AuthorityOperationTypeEnum VEHICLE_INSPECTION_CHECK_POINT
A permanent or temporary operation established on or adjacent to the carriageway for inspection of vehicles by authorities (e.g. vehicle saftey checks and tachograph checks).
-
OTHER
public static final AuthorityOperationTypeEnum OTHER
Other than as defined in this enumeration.
-
-
Method Detail
-
values
public static AuthorityOperationTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuthorityOperationTypeEnum c : AuthorityOperationTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthorityOperationTypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static AuthorityOperationTypeEnum fromValue(String v)
-
-