public static enum Resource.AnnotatedTypeVariant extends Enum<Resource.AnnotatedTypeVariant>
Enum Constant and Description |
---|
COLLECTION_RESOURCE_COLLECTION
A collection resource handler, collection endpoint (expect CAQ opererations).
|
COLLECTION_RESOURCE_INSTANCE
A collection resource handler, instance endpoint (expect CRUDPA operations).
|
REQUEST_HANDLER
A plain request handler (expects all operations).
|
SINGLETON_RESOURCE
A singleton resource handler.
|
Modifier and Type | Method and Description |
---|---|
static Resource.AnnotatedTypeVariant |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Resource.AnnotatedTypeVariant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Resource.AnnotatedTypeVariant SINGLETON_RESOURCE
public static final Resource.AnnotatedTypeVariant COLLECTION_RESOURCE_COLLECTION
public static final Resource.AnnotatedTypeVariant COLLECTION_RESOURCE_INSTANCE
public static final Resource.AnnotatedTypeVariant REQUEST_HANDLER
public static Resource.AnnotatedTypeVariant[] values()
for (Resource.AnnotatedTypeVariant c : Resource.AnnotatedTypeVariant.values()) System.out.println(c);
public static Resource.AnnotatedTypeVariant 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 © 2010-2020, ForgeRock All Rights Reserved.