public enum PartialOrderRelation extends Enum<PartialOrderRelation>
Title: Partial Order Relation
Description:
Copyright: Copyright (c) 2007
Company: Clark & Parsia, LLC.
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
INCOMPARABLE |
LESS |
| Modifier and Type | Method and Description |
|---|---|
static PartialOrderRelation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PartialOrderRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PartialOrderRelation EQUAL
public static final PartialOrderRelation GREATER
public static final PartialOrderRelation INCOMPARABLE
public static final PartialOrderRelation LESS
public static PartialOrderRelation[] values()
for (PartialOrderRelation c : PartialOrderRelation.values()) System.out.println(c);
public static PartialOrderRelation 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 nullCopyright © 2019. All rights reserved.