Package net.runelite.client.util
Enum RSTimeUnit
- java.lang.Object
-
- java.lang.Enum<RSTimeUnit>
-
- net.runelite.client.util.RSTimeUnit
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RSTimeUnit>,java.time.temporal.TemporalUnit
public enum RSTimeUnit extends java.lang.Enum<RSTimeUnit> implements java.time.temporal.TemporalUnit
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_TICKSGAME_TICKS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <R extends java.time.temporal.Temporal>
RaddTo(R temporal, long amount)longbetween(java.time.temporal.Temporal temporal1Inclusive, java.time.temporal.Temporal temporal2Exclusive)java.time.DurationgetDuration()java.lang.StringgetName()booleanisDateBased()booleanisDurationEstimated()booleanisSupportedBy(java.time.temporal.Temporal temporal)booleanisTimeBased()java.lang.StringtoString()static RSTimeUnitvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RSTimeUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_TICKS
public static final RSTimeUnit CLIENT_TICKS
-
GAME_TICKS
public static final RSTimeUnit GAME_TICKS
-
-
Method Detail
-
values
public static RSTimeUnit[] 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 (RSTimeUnit c : RSTimeUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RSTimeUnit 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
-
isDurationEstimated
public boolean isDurationEstimated()
- Specified by:
isDurationEstimatedin interfacejava.time.temporal.TemporalUnit
-
isDateBased
public boolean isDateBased()
- Specified by:
isDateBasedin interfacejava.time.temporal.TemporalUnit
-
isTimeBased
public boolean isTimeBased()
- Specified by:
isTimeBasedin interfacejava.time.temporal.TemporalUnit
-
isSupportedBy
public boolean isSupportedBy(java.time.temporal.Temporal temporal)
- Specified by:
isSupportedByin interfacejava.time.temporal.TemporalUnit
-
addTo
public <R extends java.time.temporal.Temporal> R addTo(R temporal, long amount)- Specified by:
addToin interfacejava.time.temporal.TemporalUnit
-
between
public long between(java.time.temporal.Temporal temporal1Inclusive, java.time.temporal.Temporal temporal2Exclusive)- Specified by:
betweenin interfacejava.time.temporal.TemporalUnit
-
toString
public java.lang.String toString()
- Specified by:
toStringin interfacejava.time.temporal.TemporalUnit- Overrides:
toStringin classjava.lang.Enum<RSTimeUnit>
-
getName
public java.lang.String getName()
-
getDuration
public java.time.Duration getDuration()
- Specified by:
getDurationin interfacejava.time.temporal.TemporalUnit
-
-