Enum L3vpnVrfPipe.PipeMode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<L3vpnVrfPipe.PipeMode>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.Enumeration, org.opendaylight.yangtools.yang.binding.TypeObject
    Enclosing interface:
    L3vpnVrfPipe

    public static enum L3vpnVrfPipe.PipeMode
    extends java.lang.Enum<L3vpnVrfPipe.PipeMode>
    implements org.opendaylight.yangtools.yang.binding.Enumeration
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Pipe
      pipe: Indicates that the Pipe MPLS Diff-Serv mode is adopted.
      ShortPipe
      shortPipe: Indicates that the Short-pipe MPLS Diff-Serv mode is adopted.
      Uniform
      uniform: Indicates that the Uniform MPLS Diff-Serv mode is adopted.
    • Enum Constant Detail

      • Pipe

        public static final L3vpnVrfPipe.PipeMode Pipe
        pipe: Indicates that the Pipe MPLS Diff-Serv mode is adopted.
      • ShortPipe

        public static final L3vpnVrfPipe.PipeMode ShortPipe
        shortPipe: Indicates that the Short-pipe MPLS Diff-Serv mode is adopted.
      • Uniform

        public static final L3vpnVrfPipe.PipeMode Uniform
        uniform: Indicates that the Uniform MPLS Diff-Serv mode is adopted.
    • Method Detail

      • values

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

        public static L3vpnVrfPipe.PipeMode 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
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface org.opendaylight.yangtools.yang.binding.Enumeration
      • getIntValue

        public int getIntValue()
        Specified by:
        getIntValue in interface org.opendaylight.yangtools.yang.binding.Enumeration
      • forName

        public static java.util.Optional<L3vpnVrfPipe.PipeMode> forName​(java.lang.String name)
        Return the enumeration member whose getName() matches specified value.
        Parameters:
        name - YANG assigned name
        Returns:
        corresponding PipeMode item, if present
        Throws:
        java.lang.NullPointerException - if name is null
      • forValue

        public static L3vpnVrfPipe.PipeMode forValue​(int intValue)
        Return the enumeration member whose getIntValue() matches specified value.
        Parameters:
        intValue - integer value
        Returns:
        corresponding PipeMode item, or null if no such item exists