Enum Condition.ConditionTypes
- java.lang.Object
-
- java.lang.Enum<Condition.ConditionTypes>
-
- io.keyko.nevermined.models.service.Condition.ConditionTypes
-
- All Implemented Interfaces:
Serializable,Comparable<Condition.ConditionTypes>
- Enclosing class:
- Condition
public static enum Condition.ConditionTypes extends Enum<Condition.ConditionTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description accessSecretStoreescrowRewardexecComputehashLocklockRewardsignthresholdwhitelisting
-
Constructor Summary
Constructors Modifier Constructor Description privateConditionTypes()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Condition.ConditionTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static Condition.ConditionTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
lockReward
public static final Condition.ConditionTypes lockReward
-
accessSecretStore
public static final Condition.ConditionTypes accessSecretStore
-
escrowReward
public static final Condition.ConditionTypes escrowReward
-
hashLock
public static final Condition.ConditionTypes hashLock
-
whitelisting
public static final Condition.ConditionTypes whitelisting
-
threshold
public static final Condition.ConditionTypes threshold
-
sign
public static final Condition.ConditionTypes sign
-
execCompute
public static final Condition.ConditionTypes execCompute
-
-
Method Detail
-
values
public static Condition.ConditionTypes[] 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 (Condition.ConditionTypes c : Condition.ConditionTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Condition.ConditionTypes 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
-
-