SMILA (incubation) API documentation

org.eclipse.smila.connectivity.framework.schema.config
Enum DeltaIndexingType

java.lang.Object
  extended by java.lang.Enum<DeltaIndexingType>
      extended by org.eclipse.smila.connectivity.framework.schema.config.DeltaIndexingType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DeltaIndexingType>

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

The Enum DeltaIndexingType.


Enum Constant Summary
ADDITIVE
          DeltaIndexing is done additive, no delta delete is performed.
DISABLED
          DeltaIndexing is disabled.
FULL
          DeltaIndexing is full activated..
INITIAL
          DeltaIndexing is only initialized for future runs.
 
Method Summary
static DeltaIndexingType fromValue(java.lang.String v)
          From value.
static java.lang.String toValue(DeltaIndexingType t)
           
 java.lang.String value()
          Value.
static DeltaIndexingType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DeltaIndexingType[] 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

FULL

public static final DeltaIndexingType FULL
DeltaIndexing is full activated..


ADDITIVE

public static final DeltaIndexingType ADDITIVE
DeltaIndexing is done additive, no delta delete is performed.


INITIAL

public static final DeltaIndexingType INITIAL
DeltaIndexing is only initialized for future runs. No checks for update are done, no delta delete is performed.


DISABLED

public static final DeltaIndexingType DISABLED
DeltaIndexing is disabled.

Method Detail

values

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

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

valueOf

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

value

public java.lang.String value()
Value.

Returns:
the string

fromValue

public static DeltaIndexingType fromValue(java.lang.String v)
From value.

Parameters:
v - the v
Returns:
the delta indexing type

toValue

public static java.lang.String toValue(DeltaIndexingType t)
Parameters:
t - the t
Returns:
the string

SMILA (incubation) API documentation