Enum IPPrecedence

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<IPPrecedence>

    public enum IPPrecedence
    extends java.lang.Enum<IPPrecedence>
    Represents the deprecated IPv4 IP precedence. IP precedence occupied the 3 most-significant bits of the IPv4 ToS field
    • Method Detail

      • values

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

        public static IPPrecedence valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromShort

        public static IPPrecedence fromShort​(short value)
        Returns the IP precedence Enum corresponding to the specified short.
        Parameters:
        value - the short value of the IP precedence
        Returns:
        the IP precedence Enum corresponding to the specified short
        Throws:
        java.lang.IllegalArgumentException - if the short provided does not correspond to an IP precedence Enum value
      • getValue

        public short getValue()
        Returns the short value of this IP precedence Enum.
        Returns:
        the short value of this IP precedence Enum