public static enum VolumeQuery.MinViewability extends java.lang.Enum<VolumeQuery.MinViewability>
NONE
.Enum Constant and Description |
---|
FULL
Full.
|
NONE
None.
|
PARTIAL
Partial.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the URL.
|
static VolumeQuery.MinViewability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VolumeQuery.MinViewability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VolumeQuery.MinViewability FULL
public static final VolumeQuery.MinViewability NONE
public static final VolumeQuery.MinViewability PARTIAL
public static VolumeQuery.MinViewability[] values()
for (VolumeQuery.MinViewability c : VolumeQuery.MinViewability.values()) System.out.println(c);
public static VolumeQuery.MinViewability 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 nullpublic java.lang.String toValue()