Enum Enums.OnCompletion
- java.lang.Object
-
- java.lang.Enum<Enums.OnCompletion>
-
- com.algorand.algosdk.v2.client.model.Enums.OnCompletion
-
- All Implemented Interfaces:
Serializable
,Comparable<Enums.OnCompletion>
- Enclosing class:
- Enums
public static enum Enums.OnCompletion extends Enum<Enums.OnCompletion>
(apan) defines the what additional actions occur with the transaction. Valid types: noop optin closeout clear update update delete
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Enums.OnCompletion
forValue(String value)
String
toString()
static Enums.OnCompletion
valueOf(String name)
Returns the enum constant of this type with the specified name.static Enums.OnCompletion[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOOP
public static final Enums.OnCompletion NOOP
-
OPTIN
public static final Enums.OnCompletion OPTIN
-
CLOSEOUT
public static final Enums.OnCompletion CLOSEOUT
-
CLEAR
public static final Enums.OnCompletion CLEAR
-
UPDATE
public static final Enums.OnCompletion UPDATE
-
DELETE
public static final Enums.OnCompletion DELETE
-
UNKNOWN
public static final Enums.OnCompletion UNKNOWN
-
-
Method Detail
-
values
public static Enums.OnCompletion[] 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.OnCompletion c : Enums.OnCompletion.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.OnCompletion 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:
toString
in classEnum<Enums.OnCompletion>
-
forValue
public static Enums.OnCompletion forValue(String value)
-
-