org.mindswap.pellet.jena.graph.loader
Enum SimpleProperty

java.lang.Object
  extended by java.lang.Enum<SimpleProperty>
      extended by org.mindswap.pellet.jena.graph.loader.SimpleProperty
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SimpleProperty>

public enum SimpleProperty
extends java.lang.Enum<SimpleProperty>

Title:

Description: Only simple properties can be used in cardinality restrictions, disjointness axioms, irreflexivity and antisymmetry axioms. This enumeration is used to identify why a certain property should be treated as simple

Copyright: Copyright (c) 2008

Company: Clark & Parsia, LLC.

Author:
Evren Sirin

Enum Constant Summary
ANTI_SYM
           
CARDINALITY
           
DISJOINT
           
IRREFLEXIVE
           
SELF
           
 
Method Summary
 java.lang.String toString()
           
static SimpleProperty valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SimpleProperty[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SELF

public static final SimpleProperty SELF

CARDINALITY

public static final SimpleProperty CARDINALITY

IRREFLEXIVE

public static final SimpleProperty IRREFLEXIVE

ANTI_SYM

public static final SimpleProperty ANTI_SYM

DISJOINT

public static final SimpleProperty DISJOINT
Method Detail

values

public static SimpleProperty[] 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 (SimpleProperty c : SimpleProperty.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SimpleProperty valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<SimpleProperty>


Copyright © 2004 Evren Sirin. All Rights Reserved.