Package glide.api
Enum BaseClient.ResponseFlags
- java.lang.Object
-
- java.lang.Enum<BaseClient.ResponseFlags>
-
- glide.api.BaseClient.ResponseFlags
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BaseClient.ResponseFlags>
- Enclosing class:
- BaseClient
public static enum BaseClient.ResponseFlags extends java.lang.Enum<BaseClient.ResponseFlags>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENCODING_UTF8IS_NULLABLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BaseClient.ResponseFlagsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BaseClient.ResponseFlags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENCODING_UTF8
public static final BaseClient.ResponseFlags ENCODING_UTF8
-
IS_NULLABLE
public static final BaseClient.ResponseFlags IS_NULLABLE
-
-
Method Detail
-
values
public static BaseClient.ResponseFlags[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BaseClient.ResponseFlags c : BaseClient.ResponseFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseClient.ResponseFlags valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-