Enum PccSyncState

  • All Implemented Interfaces:
    Serializable, Comparable<PccSyncState>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.Enumeration, org.opendaylight.yangtools.yang.binding.TypeObject

    @Generated("mdsal-binding-generator")
    public enum PccSyncState
    extends Enum<PccSyncState>
    implements org.opendaylight.yangtools.yang.binding.Enumeration
    • Enum Constant Detail

      • InitialResync

        public static final PccSyncState InitialResync
        Initial state resynchronization is being performed.
      • IncrementalSync

        public static final PccSyncState IncrementalSync
        Incremental state resynchronization is being performed.
      • TriggeredInitialSync

        public static final PccSyncState TriggeredInitialSync
        Triggered initial state resynchronization is being performed.
      • PcepTriggeredResync

        public static final PccSyncState PcepTriggeredResync
        Pcep triggered state resynchronization is being performed.
      • Synchronized

        public static final PccSyncState Synchronized
        State synchronization has been achieved.
    • Method Detail

      • values

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

        public static PccSyncState 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
      • getName

        public 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 Optional<PccSyncState> forName​(String name)
        Return the enumeration member whose getName() matches specified value.
        Parameters:
        name - YANG assigned name
        Returns:
        corresponding PccSyncState item, if present
        Throws:
        NullPointerException - if name is null
      • forValue

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