@Internal public enum ClausePrecedence extends Enum<ClausePrecedence>
Modifier and Type | Method and Description |
---|---|
static ClausePrecedence |
getPrecedence(Clause clause) |
int |
getValue() |
static ClausePrecedence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClausePrecedence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClausePrecedence OR
public static final ClausePrecedence AND
public static final ClausePrecedence NOT
public static final ClausePrecedence TERMINAL
public static ClausePrecedence[] values()
for (ClausePrecedence c : ClausePrecedence.values()) System.out.println(c);
public static ClausePrecedence 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 static ClausePrecedence getPrecedence(Clause clause)
public int getValue()
Copyright © 2002-2021 Atlassian. All Rights Reserved.