org.vostok.vaadin.addon.button.push
Enum PushButton.Mode

java.lang.Object
  extended by java.lang.Enum<PushButton.Mode>
      extended by org.vostok.vaadin.addon.button.push.PushButton.Mode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PushButton.Mode>
Enclosing class:
PushButton

public static enum PushButton.Mode
extends java.lang.Enum<PushButton.Mode>

Switch mode policy for PushButton


Enum Constant Summary
MANYMANY
          several button can be on at the same time. getValue / datasource will report index of the LAST on button.
ONEMANY
          only one button at once. getValue / datasource will report index of this button.
 
Method Summary
static PushButton.Mode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PushButton.Mode[] 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

ONEMANY

public static final PushButton.Mode ONEMANY
only one button at once. getValue / datasource will report index of this button. PushButton must have at least 2 buttons


MANYMANY

public static final PushButton.Mode MANYMANY
several button can be on at the same time. getValue / datasource will report index of the LAST on button. This is the default mode

Method Detail

values

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

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

valueOf

public static PushButton.Mode valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null