Enum Enums.Include
- java.lang.Object
-
- java.lang.Enum<Enums.Include>
-
- com.algorand.algosdk.v2.client.model.Enums.Include
-
- All Implemented Interfaces:
Serializable,Comparable<Enums.Include>
- Enclosing class:
- Enums
public static enum Enums.Include extends Enum<Enums.Include>
Include additional items in the response. Use `values` to include box values. Multiple values can be comma-separated.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Enums.IncludeforValue(String value)StringtoString()static Enums.IncludevalueOf(String name)Returns the enum constant of this type with the specified name.static Enums.Include[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAMS
public static final Enums.Include PARAMS
-
VALUES
public static final Enums.Include VALUES
-
UNKNOWN
public static final Enums.Include UNKNOWN
-
-
Method Detail
-
values
public static Enums.Include[] 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 (Enums.Include c : Enums.Include.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enums.Include valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<Enums.Include>
-
forValue
public static Enums.Include forValue(String value)
-
-