- java.lang.Object
-
- java.lang.Enum<Binding.SyncRate>
-
- org.praxislive.base.Binding.SyncRate
-
- All Implemented Interfaces:
Serializable
,Comparable<Binding.SyncRate>
- Enclosing class:
- Binding
public static enum Binding.SyncRate extends Enum<Binding.SyncRate>
Possible rates for syncing.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Binding.SyncRate
valueOf(String name)
Returns the enum constant of this type with the specified name.static Binding.SyncRate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final Binding.SyncRate None
-
Low
public static final Binding.SyncRate Low
-
Medium
public static final Binding.SyncRate Medium
-
High
public static final Binding.SyncRate High
-
-
Method Detail
-
values
public static Binding.SyncRate[] 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 (Binding.SyncRate c : Binding.SyncRate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Binding.SyncRate 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
-
-