|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SelfInvocationModes>
org.iqual.chaplin.composite.SelfInvocationModes
public enum SelfInvocationModes
| Enum Constant Summary | |
|---|---|
onAll
Invoke the method on the self instance and try to invoke the method on the children components too. |
|
onSelfOnly
Invoke the method on the self instance only and do not try to invoke the method on the children components. |
|
unsupported
It is not possible to call the method on the self instance |
|
| Method Summary | |
|---|---|
static SelfInvocationModes |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SelfInvocationModes[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SelfInvocationModes onSelfOnly
public static final SelfInvocationModes onAll
public static final SelfInvocationModes unsupported
| Method Detail |
|---|
public static final SelfInvocationModes[] values()
for(SelfInvocationModes c : SelfInvocationModes.values())
System.out.println(c);
public static SelfInvocationModes 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
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||