public enum ResourceResolverType extends Enum<ResourceResolverType>
| Enum Constant and Description |
|---|
JCR_JACKRABBIT
Uses a real JCR Jackrabbit repository.
|
JCR_MOCK
Uses a simple JCR "in-memory" mock as underlying repository.
|
RESOURCERESOLVER_MOCK
Uses Sling "resourceresolver-mock" implementation, no underlying JCR
repository.
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceResolverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceResolverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceResolverType RESOURCERESOLVER_MOCK
public static final ResourceResolverType JCR_MOCK
public static final ResourceResolverType JCR_JACKRABBIT
public static ResourceResolverType[] values()
for (ResourceResolverType c : ResourceResolverType.values()) System.out.println(c);
public static ResourceResolverType 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 © 2007–2014 The Apache Software Foundation. All rights reserved.