Enum Headway.ObjectType

    • Method Detail

      • values

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

        public static Headway.ObjectType 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
      • isGtu

        public boolean isGtu()
        Returns:
        whether this object is a GTU or not.
      • isTrafficLight

        public boolean isTrafficLight()
        Returns:
        whether this object is a GTU or not.
      • isObject

        public boolean isObject()
        Returns:
        whether this object is an object or not.
      • isDistanceOnly

        public boolean isDistanceOnly()
        Returns:
        whether no object was observed and only a distance was stored.
      • isConflict

        public boolean isConflict()
        Returns:
        whether this object is a conflict or not.
      • isStopLine

        public boolean isStopLine()
        Returns:
        whether this object is a stop line or not.
      • isBusStop

        public boolean isBusStop()
        Returns:
        whether this object is a bus stop or not.