com.unboundid.directory.sdk.sync.types
Enum DatabaseChangeRecord.ChangeType

java.lang.Object
  extended by java.lang.Enum<DatabaseChangeRecord.ChangeType>
      extended by com.unboundid.directory.sdk.sync.types.DatabaseChangeRecord.ChangeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DatabaseChangeRecord.ChangeType>
Enclosing class:
DatabaseChangeRecord

public static enum DatabaseChangeRecord.ChangeType
extends java.lang.Enum<DatabaseChangeRecord.ChangeType>

Potential types of database changes.


Enum Constant Summary
delete
          Represents a database delete.
insert
          Represents a database insert.
resync
          Represents a resync operation.
update
          Represents a database update.
 
Method Summary
static DatabaseChangeRecord.ChangeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DatabaseChangeRecord.ChangeType[] 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

insert

public static final DatabaseChangeRecord.ChangeType insert
Represents a database insert.


delete

public static final DatabaseChangeRecord.ChangeType delete
Represents a database delete.


update

public static final DatabaseChangeRecord.ChangeType update
Represents a database update.


resync

public static final DatabaseChangeRecord.ChangeType resync
Represents a resync operation. This is a special type used by the resync command-line tool. See JDBCSyncSource#listAllEntries() for more information.

Method Detail

values

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

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

valueOf

public static DatabaseChangeRecord.ChangeType 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