Enum ResponseType

    • Enum Constant Detail

      • EDGE_VARIABLE

        public static final ResponseType EDGE_VARIABLE
      • AREAL_DETECTOR_VARIABLE

        public static final ResponseType AREAL_DETECTOR_VARIABLE
      • PERSON_VARIABLE

        public static final ResponseType PERSON_VARIABLE
      • MULTI_ENTRY_EXIT_DETECTOR_VARIABLE

        public static final ResponseType MULTI_ENTRY_EXIT_DETECTOR_VARIABLE
      • JUNCTION_VARIABLE

        public static final ResponseType JUNCTION_VARIABLE
      • VEHICLE_VARIABLE

        public static final ResponseType VEHICLE_VARIABLE
      • INDUCTIONLOOP_VARIABLE

        public static final ResponseType INDUCTIONLOOP_VARIABLE
      • GUI_VARIABLE

        public static final ResponseType GUI_VARIABLE
      • POI_VARIABLE

        public static final ResponseType POI_VARIABLE
      • VEHICLETYPE_VARIABLE

        public static final ResponseType VEHICLETYPE_VARIABLE
      • LANE_VARIABLE

        public static final ResponseType LANE_VARIABLE
      • POLYGON_VARIABLE

        public static final ResponseType POLYGON_VARIABLE
      • ROUTE_VARIABLE

        public static final ResponseType ROUTE_VARIABLE
      • SIM_VARIABLE

        public static final ResponseType SIM_VARIABLE
      • POLYGON_CONTEXT

        public static final ResponseType POLYGON_CONTEXT
      • EDGE_CONTEXT

        public static final ResponseType EDGE_CONTEXT
      • AREAL_DETECTOR_CONTEXT

        public static final ResponseType AREAL_DETECTOR_CONTEXT
      • PERSON_CONTEXT

        public static final ResponseType PERSON_CONTEXT
      • MULTI_ENTRY_EXIT_DETECTOR_CONTEXT

        public static final ResponseType MULTI_ENTRY_EXIT_DETECTOR_CONTEXT
      • INDUCTIONLOOP_CONTEXT

        public static final ResponseType INDUCTIONLOOP_CONTEXT
      • ROUTE_CONTEXT

        public static final ResponseType ROUTE_CONTEXT
      • VEHICLE_CONTEXT

        public static final ResponseType VEHICLE_CONTEXT
      • VEHICLETYPE_CONTEXT

        public static final ResponseType VEHICLETYPE_CONTEXT
      • JUNCTION_CONTEXT

        public static final ResponseType JUNCTION_CONTEXT
      • LANE_CONTEXT

        public static final ResponseType LANE_CONTEXT
    • Method Detail

      • values

        public static ResponseType[] 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 (ResponseType c : ResponseType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ResponseType 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
      • isVariable

        public boolean isVariable()
      • isContext

        public boolean isContext()
      • getType

        public static ResponseType getType​(int response)