|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PlebeianActor>
org.starhope.appius.game.npc.plebeian.PlebeianActor
public enum PlebeianActor
When an Action
fires through a Quaestor
, there are
two or three users who can be involved in that Action: the subject,
the object, and the user embodying the listener. (Any or all of the
three can be null, however.)
This is an enumeration which embodies these three actors, used in
ScriptRunner
mostly (e.g. PlebeianScriptRunner
)
Enum Constant Summary | |
---|---|
Myself
The observer who is listening for an Action |
|
Object
The Object of the Action |
|
Subject
The Subject of the Action |
Method Summary | |
---|---|
static PlebeianActor |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PlebeianActor[] |
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 PlebeianActor Subject
public static final PlebeianActor Object
public static final PlebeianActor Myself
Method Detail |
---|
public static PlebeianActor[] values()
for (PlebeianActor c : PlebeianActor.values()) System.out.println(c);
public static PlebeianActor valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |