public static enum MultiMapConfig.ValueCollectionType extends Enum<MultiMapConfig.ValueCollectionType>
| Enum Constant and Description | 
|---|
| LISTStore value collection as list | 
| SETStore value collection as set | 
| Modifier and Type | Method and Description | 
|---|---|
| static MultiMapConfig.ValueCollectionType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MultiMapConfig.ValueCollectionType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MultiMapConfig.ValueCollectionType SET
public static final MultiMapConfig.ValueCollectionType LIST
public static MultiMapConfig.ValueCollectionType[] values()
for (MultiMapConfig.ValueCollectionType c : MultiMapConfig.ValueCollectionType.values()) System.out.println(c);
public static MultiMapConfig.ValueCollectionType 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 © 2015 Hazelcast, Inc.. All Rights Reserved.