Enum Class Statement.StatementOntology

java.lang.Object
java.lang.Enum<Statement.StatementOntology>
cz.cvut.kbss.ontodriver.Statement.StatementOntology
All Implemented Interfaces:
Serializable, Comparable<Statement.StatementOntology>, java.lang.constant.Constable
Enclosing interface:
Statement

public static enum Statement.StatementOntology extends Enum<Statement.StatementOntology>
Specifies which ontology is used for statement evaluation.
  • Enum Constant Details

    • TRANSACTIONAL

      public static final Statement.StatementOntology TRANSACTIONAL
      Transactional ontology. May contain uncommitted changes which influence the statement evaluation.
    • SHARED

      public static final Statement.StatementOntology SHARED
      The main ontology in the current state. No uncommitted changes are present in it.
  • Method Details

    • values

      public static Statement.StatementOntology[] 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 Statement.StatementOntology 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