org.iqual.chaplin.composite
Enum SelfInvocationModes

java.lang.Object
  extended by java.lang.Enum<SelfInvocationModes>
      extended by org.iqual.chaplin.composite.SelfInvocationModes
All Implemented Interfaces:
Serializable, Comparable<SelfInvocationModes>

public enum SelfInvocationModes
extends Enum<SelfInvocationModes>

Since:
May 1, 2009 1:19:39 PM
Author:
Zbynek Slajchrt

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

onSelfOnly

public static final SelfInvocationModes onSelfOnly
Invoke the method on the self instance only and do not try to invoke the method on the children components.


onAll

public static final SelfInvocationModes onAll
Invoke the method on the self instance and try to invoke the method on the children components too.


unsupported

public static final SelfInvocationModes unsupported
It is not possible to call the method on the self instance

Method Detail

values

public static final SelfInvocationModes[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(SelfInvocationModes c : SelfInvocationModes.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static SelfInvocationModes valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2009 iquality.org. All Rights Reserved.