public enum Representation extends Enum<Representation>
| Modifier and Type | Method and Description |
|---|---|
static Representation |
fromString(String string) |
static Representation |
fromURI(URI uri) |
String |
toString() |
static Representation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Representation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Representation Reference
public static final Representation Inline
public static Representation[] values()
for (Representation c : Representation.values()) System.out.println(c);
public static Representation 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 nullpublic String toString()
toString in class Enum<Representation>public static Representation fromString(String string)
public static Representation fromURI(URI uri)
Copyright © 2016. All rights reserved.