org.indi.clientmessages
Enum BlobEnable

java.lang.Object
  extended by java.lang.Enum<BlobEnable>
      extended by org.indi.clientmessages.BlobEnable
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BlobEnable>

public enum BlobEnable
extends java.lang.Enum<BlobEnable>

A state object keeping track whether or not BLOBs shall be sent not sent or only be sent for one particular thing. So the a BLOB sending policy is defined by an object of this class.

Author:
Dirk Hünniger

Enum Constant Summary
Also
           
Never
           
Only
           
 
Method Summary
static BlobEnable valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BlobEnable[] 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

Never

public static final BlobEnable Never

Also

public static final BlobEnable Also

Only

public static final BlobEnable Only
Method Detail

values

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

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

valueOf

public static BlobEnable 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


Copyright © 2008. All Rights Reserved.