org.apache.directory.api.dsmlv2.request
Enum BatchRequestDsml.Processing

java.lang.Object
  extended by java.lang.Enum<BatchRequestDsml.Processing>
      extended by org.apache.directory.api.dsmlv2.request.BatchRequestDsml.Processing
All Implemented Interfaces:
Serializable, Comparable<BatchRequestDsml.Processing>
Enclosing class:
BatchRequestDsml

public static enum BatchRequestDsml.Processing
extends Enum<BatchRequestDsml.Processing>

This enum represents the different types of processing for a Batch Request

Author:
Apache Directory Project

Enum Constant Summary
PARALLEL
          Parallel processing.
SEQUENTIAL
          Sequential processing.
 
Method Summary
static BatchRequestDsml.Processing valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BatchRequestDsml.Processing[] 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

SEQUENTIAL

public static final BatchRequestDsml.Processing SEQUENTIAL
Sequential processing.


PARALLEL

public static final BatchRequestDsml.Processing PARALLEL
Parallel processing.

Method Detail

values

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

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

valueOf

public static BatchRequestDsml.Processing 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
NullPointerException - if the argument is null


Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.