Enum SchemaMountStatements

    • Method Detail

      • values

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

        public static SchemaMountStatements 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
      • 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.