public enum ContentDirection extends Enum<ContentDirection>
| Modifier and Type | Method and Description |
|---|---|
static ContentDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentDirection INPUT
public static final ContentDirection OUTPUT
public static final ContentDirection PARAMETER
public static ContentDirection[] values()
for (ContentDirection c : ContentDirection.values()) System.out.println(c);
public static ContentDirection 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 © 2018–2021. All rights reserved.