Enum CyrusImapdServer.TimeUnit
- java.lang.Object
-
- java.lang.Enum<CyrusImapdServer.TimeUnit>
-
- com.aoindustries.aoserv.client.email.CyrusImapdServer.TimeUnit
-
- All Implemented Interfaces:
Serializable,Comparable<CyrusImapdServer.TimeUnit>
- Enclosing class:
- CyrusImapdServer
public static enum CyrusImapdServer.TimeUnit extends Enum<CyrusImapdServer.TimeUnit>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDays(float duration)Converts to a number of days, rounded-up.chargetSuffix()static CyrusImapdServer.TimeUnitvalueOf(String name)Returns the enum constant of this type with the specified name.static CyrusImapdServer.TimeUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAYS
public static final CyrusImapdServer.TimeUnit DAYS
-
HOURS
public static final CyrusImapdServer.TimeUnit HOURS
-
MINUTES
public static final CyrusImapdServer.TimeUnit MINUTES
-
SECONDS
public static final CyrusImapdServer.TimeUnit SECONDS
-
-
Method Detail
-
values
public static CyrusImapdServer.TimeUnit[] 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 (CyrusImapdServer.TimeUnit c : CyrusImapdServer.TimeUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CyrusImapdServer.TimeUnit 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
-
getSuffix
public char getSuffix()
-
getDays
public int getDays(float duration)
Converts to a number of days, rounded-up.
-
-