public static enum URIProvider.Scope extends java.lang.Enum<URIProvider.Scope>
Enum Constant and Description |
---|
EXTERNAL
A External URI safe to be used by the requesting client in a external context.
|
INTERNAL
Internal URI only to be used by a client on an internal network and never leaked onto a public network.
|
PUBLIC
A URI that may be published to many client in public context.
|
Modifier and Type | Method and Description |
---|---|
static URIProvider.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static URIProvider.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final URIProvider.Scope EXTERNAL
public static final URIProvider.Scope INTERNAL
public static final URIProvider.Scope PUBLIC
public static URIProvider.Scope[] values()
for (URIProvider.Scope c : URIProvider.Scope.values()) System.out.println(c);
public static URIProvider.Scope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2010 - 2020 Adobe. All Rights Reserved