Enum 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 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).
    • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()