Enum Class NACMStatements

java.lang.Object
java.lang.Enum<NACMStatements>
org.opendaylight.yangtools.rfc6536.model.api.NACMStatements
All Implemented Interfaces:
Serializable, Comparable<NACMStatements>, Constable, Immutable, StatementDefinition

@NonNullByDefault public enum NACMStatements extends Enum<NACMStatements> implements StatementDefinition
StatementDefinitions for statements defined by RFC6536.
  • Enum Constant Details

    • DEFAULT_DENY_ALL

      public static final NACMStatements DEFAULT_DENY_ALL
    • DEFAULT_DENY_WRITE

      public static final NACMStatements DEFAULT_DENY_WRITE
  • Method Details

    • values

      public static NACMStatements[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static NACMStatements valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getArgumentDefinition

      public Optional<ArgumentDefinition> getArgumentDefinition()
      Description copied from interface: StatementDefinition
      Returns name of statement argument or null, if statement does not have argument.
      Specified by:
      getArgumentDefinition in interface StatementDefinition
      Returns:
      argument name or null, if statement does not take argument.
    • getStatementName

      public QName getStatementName()
      Description copied from interface: StatementDefinition
      Returns name of the statement.
      Specified by:
      getStatementName in interface StatementDefinition
      Returns:
      Name of the statement
    • getEffectiveRepresentationClass

      public Class<? extends EffectiveStatement<?,?>> getEffectiveRepresentationClass()
      Description copied from interface: StatementDefinition
      Returns class which represents derived behaviour from supplied statement. This class should be an interface which defines convenience access to statement properties, namespace items and substatements.
      Specified by:
      getEffectiveRepresentationClass in interface StatementDefinition
      Returns:
      class which represents effective version of statement associated with this definition
    • getDeclaredRepresentationClass

      public Class<? extends DeclaredStatement<?>> getDeclaredRepresentationClass()
      Description copied from interface: StatementDefinition
      Returns class which represents declared version of statement associated with this definition. This class should be an interface which provides convenience access to declared substatements.
      Specified by:
      getDeclaredRepresentationClass in interface StatementDefinition
      Returns:
      class which represents declared version of statement associated with this definition.