com.hazelcast.config
Enum PermissionConfig.PermissionType

java.lang.Object
  extended by java.lang.Enum<PermissionConfig.PermissionType>
      extended by com.hazelcast.config.PermissionConfig.PermissionType
All Implemented Interfaces:
Serializable, Comparable<PermissionConfig.PermissionType>
Enclosing class:
PermissionConfig

public static enum PermissionConfig.PermissionType
extends Enum<PermissionConfig.PermissionType>


Enum Constant Summary
ALL
           
ATOMIC_NUMBER
           
COUNTDOWN_LATCH
           
EXECUTOR_SERVICE
           
ID_GENERATOR
           
LIST
           
LISTENER
           
LOCK
           
MAP
           
MULTIMAP
           
QUEUE
           
SEMAPHORE
           
SET
           
TOPIC
           
TRANSACTION
           
 
Method Summary
static PermissionConfig.PermissionType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PermissionConfig.PermissionType[] 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

MAP

public static final PermissionConfig.PermissionType MAP

QUEUE

public static final PermissionConfig.PermissionType QUEUE

TOPIC

public static final PermissionConfig.PermissionType TOPIC

MULTIMAP

public static final PermissionConfig.PermissionType MULTIMAP

LIST

public static final PermissionConfig.PermissionType LIST

SET

public static final PermissionConfig.PermissionType SET

ID_GENERATOR

public static final PermissionConfig.PermissionType ID_GENERATOR

LOCK

public static final PermissionConfig.PermissionType LOCK

ATOMIC_NUMBER

public static final PermissionConfig.PermissionType ATOMIC_NUMBER

COUNTDOWN_LATCH

public static final PermissionConfig.PermissionType COUNTDOWN_LATCH

SEMAPHORE

public static final PermissionConfig.PermissionType SEMAPHORE

EXECUTOR_SERVICE

public static final PermissionConfig.PermissionType EXECUTOR_SERVICE

LISTENER

public static final PermissionConfig.PermissionType LISTENER

TRANSACTION

public static final PermissionConfig.PermissionType TRANSACTION

ALL

public static final PermissionConfig.PermissionType ALL
Method Detail

values

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

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

valueOf

public static PermissionConfig.PermissionType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2008-2012 Hazel Ltd. All Rights Reserved.