pl.mbdev.openstage
Enum IppKey.SendKeys

java.lang.Object
  extended by java.lang.Enum<IppKey.SendKeys>
      extended by pl.mbdev.openstage.IppKey.SendKeys
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IppKey.SendKeys>
Enclosing class:
IppKey

public static enum IppKey.SendKeys
extends java.lang.Enum<IppKey.SendKeys>

The input from IppKey element may be sent to the remote server or not.

Author:
Mateusz Bysiek

Enum Constant Summary
NO
          The keys are not sent.
YES
          The keys are sent.
 
Method Summary
static IppKey.SendKeys valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IppKey.SendKeys[] 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

YES

public static final IppKey.SendKeys YES
The keys are sent.


NO

public static final IppKey.SendKeys NO
The keys are not sent.

Method Detail

values

public static IppKey.SendKeys[] 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 (IppKey.SendKeys c : IppKey.SendKeys.values())
    System.out.println(c);

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

valueOf

public static IppKey.SendKeys 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