|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Support.Rule> scale.annot.Support.Rule
public static enum Support.Rule
The combining rule specifies how the user and system belief values will be combined.
Enum Constant Summary | |
---|---|
Optimistic
Use whichever value represents the more optimistic belief. |
|
Pessimistic
Use whichever value represents the more pessimistic belief. |
|
StrongestSystem
Use whichever value represents the strongest belief. |
|
StrongestUser
Use whichever value represents the strongest belief. |
|
System
Use the system's value. |
|
User
Use the user's value |
Method Summary | |
---|---|
static Support.Rule |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Support.Rule[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Support.Rule StrongestSystem
public static final Support.Rule StrongestUser
public static final Support.Rule System
public static final Support.Rule User
public static final Support.Rule Optimistic
public static final Support.Rule Pessimistic
Method Detail |
---|
public static Support.Rule[] values()
for (Support.Rule c : Support.Rule.values()) System.out.println(c);
public static Support.Rule valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |