public enum IndexCopyBehavior extends Enum<IndexCopyBehavior>
| Enum Constant and Description | 
|---|
| COPY_ON_READUnderlying data structures of the index are concurrently modified without copy-on-write semantics. | 
| COPY_ON_WRITEUnderlying data structures of the index are modified with copy-on-write semantics. | 
| NEVERUnderlying data structures of the index are concurrently modified without copy-on-write semantics. | 
| Modifier and Type | Method and Description | 
|---|---|
| static IndexCopyBehavior | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static IndexCopyBehavior[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final IndexCopyBehavior COPY_ON_READ
public static final IndexCopyBehavior COPY_ON_WRITE
public static final IndexCopyBehavior NEVER
public static IndexCopyBehavior[] values()
for (IndexCopyBehavior c : IndexCopyBehavior.values()) System.out.println(c);
public static IndexCopyBehavior valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 Hazelcast, Inc.. All Rights Reserved.