public enum LocalViewConnectionState extends Enum<LocalViewConnectionState>
| Enum Constant and Description | 
|---|
| ACTIVEIndicates the local view is connected to all partitions | 
| CLOSEDIndicates the local view is permanently closed. | 
| DISCONNECTEDIndicates the local view is disconnected from one or more of the partitions,
 but the disconnection duration is shorter than the configurable max-disconnection-duration parameter. | 
| INACTIVEIndicates the local view is disconnected from one or more of the partitions,
 but the disconnection duration is longer than max-disconnection-duration. | 
| Modifier and Type | Method and Description | 
|---|---|
| static LocalViewConnectionState | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LocalViewConnectionState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LocalViewConnectionState ACTIVE
public static final LocalViewConnectionState DISCONNECTED
public static final LocalViewConnectionState INACTIVE
public static final LocalViewConnectionState CLOSED
public static LocalViewConnectionState[] values()
for (LocalViewConnectionState c : LocalViewConnectionState.values()) System.out.println(c);
public static LocalViewConnectionState 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 © GigaSpaces.