public static enum Fax.Quality extends Enum<Fax.Quality>
| Modifier and Type | Method and Description |
|---|---|
static Fax.Quality |
forValue(String value)
Generate a Quality from a string.
|
String |
toString() |
static Fax.Quality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Fax.Quality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fax.Quality STANDARD
public static final Fax.Quality FINE
public static final Fax.Quality SUPERFINE
public static Fax.Quality[] values()
for (Fax.Quality c : Fax.Quality.values()) System.out.println(c);
public static Fax.Quality 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<Fax.Quality>public static Fax.Quality forValue(String value)
value - string valueCopyright © 2016 Twilio, Inc. All Rights Reserved.