Package org.refcodes.data
Enum IoTimeout
- java.lang.Object
-
- java.lang.Enum<IoTimeout>
-
- org.refcodes.data.IoTimeout
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.mixin.MillisecondsAccessor
org.refcodes.mixin.MillisecondsAccessor.MillisecondsBuilder<B extends org.refcodes.mixin.MillisecondsAccessor.MillisecondsBuilder<B>>, org.refcodes.mixin.MillisecondsAccessor.MillisecondsMutator, org.refcodes.mixin.MillisecondsAccessor.MillisecondsProperty
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMilliseconds()
static IoTimeout
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IoTimeout[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static IoTimeout[] 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 (IoTimeout c : IoTimeout.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IoTimeout 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
-
getMilliseconds
public int getMilliseconds()
- Specified by:
getMilliseconds
in interfaceorg.refcodes.mixin.MillisecondsAccessor
-
-