public enum HotlinkingStategy extends Enum<HotlinkingStategy>
| Enum Constant and Description |
|---|
FORBIDDEN
A forbidden empty response is returned.
|
REDIRECT
The request must be redirect to a new URL, for
example to a watermarked version of the resource.
|
| Modifier and Type | Method and Description |
|---|---|
static HotlinkingStategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HotlinkingStategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HotlinkingStategy FORBIDDEN
public static final HotlinkingStategy REDIRECT
public static HotlinkingStategy[] values()
for (HotlinkingStategy c : HotlinkingStategy.values()) System.out.println(c);
public static HotlinkingStategy 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 © 2019. All rights reserved.