public enum SimpleProperty extends 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.
| Enum Constant and Description |
|---|
ANTI_SYM |
CARDINALITY |
DISJOINT |
IRREFLEXIVE |
SELF |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SimpleProperty |
valueOf(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.
|
public static final SimpleProperty SELF
public static final SimpleProperty CARDINALITY
public static final SimpleProperty IRREFLEXIVE
public static final SimpleProperty ANTI_SYM
public static final SimpleProperty DISJOINT
public static SimpleProperty[] values()
for (SimpleProperty c : SimpleProperty.values()) System.out.println(c);
public static SimpleProperty valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<SimpleProperty>Copyright © 2013. All Rights Reserved.