Package jadex.platform.service.registry
Enum AutoConfigRegistryAgent.Counting
- java.lang.Object
-
- java.lang.Enum<AutoConfigRegistryAgent.Counting>
-
- jadex.platform.service.registry.AutoConfigRegistryAgent.Counting
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AutoConfigRegistryAgent.Counting>
- Enclosing class:
- AutoConfigRegistryAgent
public static enum AutoConfigRegistryAgent.Counting extends java.lang.Enum<AutoConfigRegistryAgent.Counting>
Enum as result type for counting.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AutoConfigRegistryAgent.Counting
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AutoConfigRegistryAgent.Counting[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOO_FEW
public static final AutoConfigRegistryAgent.Counting TOO_FEW
-
TOO_MANY
public static final AutoConfigRegistryAgent.Counting TOO_MANY
-
OK
public static final AutoConfigRegistryAgent.Counting OK
-
-
Method Detail
-
values
public static AutoConfigRegistryAgent.Counting[] 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 (AutoConfigRegistryAgent.Counting c : AutoConfigRegistryAgent.Counting.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoConfigRegistryAgent.Counting 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
-
-