Enum StatementOrigin

    • Enum Constant Detail

      • DECLARATION

        public static final StatementOrigin DECLARATION
        Statement was explicitly declared by author of the supplied model, such as spelled out in the text of a YANG module.
      • CONTEXT

        public static final StatementOrigin CONTEXT
        Statement was inferred to exist based on effective semantics of some other statement. As an example, the rpc statement implies presence of both input and output statements, even when they are not explicitly declared.
    • Method Detail

      • values

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

        public static StatementOrigin 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