This project has retired. For details please refer to its Attic page.
UserConfigLoaderFactory.RESOLVER_TYPE (Lens 2.0.1-beta-incubating API)

org.apache.lens.server.user
Enum UserConfigLoaderFactory.RESOLVER_TYPE

java.lang.Object
  extended by java.lang.Enum<UserConfigLoaderFactory.RESOLVER_TYPE>
      extended by org.apache.lens.server.user.UserConfigLoaderFactory.RESOLVER_TYPE
All Implemented Interfaces:
Serializable, Comparable<UserConfigLoaderFactory.RESOLVER_TYPE>
Enclosing class:
UserConfigLoaderFactory

public static enum UserConfigLoaderFactory.RESOLVER_TYPE
extends Enum<UserConfigLoaderFactory.RESOLVER_TYPE>

The Enum RESOLVER_TYPE.


Enum Constant Summary
CUSTOM
          The custom.
DATABASE
          The database.
FIXED
          The fixed.
LDAP_BACKED_DATABASE
          The ldap backed database.
PROPERTYBASED
          The propertybased.
 
Method Summary
static UserConfigLoaderFactory.RESOLVER_TYPE valueOf(String name)
          Returns the enum constant of this type with the specified name.
static UserConfigLoaderFactory.RESOLVER_TYPE[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FIXED

public static final UserConfigLoaderFactory.RESOLVER_TYPE FIXED
The fixed.


PROPERTYBASED

public static final UserConfigLoaderFactory.RESOLVER_TYPE PROPERTYBASED
The propertybased.


DATABASE

public static final UserConfigLoaderFactory.RESOLVER_TYPE DATABASE
The database.


LDAP_BACKED_DATABASE

public static final UserConfigLoaderFactory.RESOLVER_TYPE LDAP_BACKED_DATABASE
The ldap backed database.


CUSTOM

public static final UserConfigLoaderFactory.RESOLVER_TYPE CUSTOM
The custom.

Method Detail

values

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

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

valueOf

public static UserConfigLoaderFactory.RESOLVER_TYPE 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 © 2014–2015 Apache Software Foundation. All rights reserved.