public class org.apache.hc.core.util.TimeValue extends java.lang.Object implements java.lang.Comparable
{
static final int INT_UNDEFINED;
public static final org.apache.hc.core.util.TimeValue MAX_VALUE;
public static final org.apache.hc.core.util.TimeValue NEG_ONE_MILLISECOND;
public static final org.apache.hc.core.util.TimeValue NEG_ONE_SECOND;
public static final org.apache.hc.core.util.TimeValue ZERO_MILLISECONDS;
private final long duration;
private final java.util.concurrent.TimeUnit timeUnit;
public static int asBoundInt(long)
{
long v;
byte v, v;
v := @parameter: long;
v = v cmp 2147483647L;
if v <= 0 goto label;
return 2147483647;
label:
v = v cmp -2147483648L;
if v >= 0 goto label;
return -2147483648;
label:
return v;
}
public static org.apache.hc.core.util.TimeValue defaultsTo(org.apache.hc.core.util.TimeValue, org.apache.hc.core.util.TimeValue)
{
org.apache.hc.core.util.TimeValue v, v, v;
v := @parameter: org.apache.hc.core.util.TimeValue;
v := @parameter: org.apache.hc.core.util.TimeValue;
if v == null goto label;
v = v;
goto label;
label:
v = v;
label:
return v;
}
public static org.apache.hc.core.util.TimeValue defaultsToNegativeOneMillisecond(org.apache.hc.core.util.TimeValue)
{
org.apache.hc.core.util.TimeValue v, v, v;
v := @parameter: org.apache.hc.core.util.TimeValue;
v = <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue NEG_ONE_MILLISECOND>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue defaultsTo(org.apache.hc.core.util.TimeValue,org.apache.hc.core.util.TimeValue)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue defaultsToNegativeOneSecond(org.apache.hc.core.util.TimeValue)
{
org.apache.hc.core.util.TimeValue v, v, v;
v := @parameter: org.apache.hc.core.util.TimeValue;
v = <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue NEG_ONE_SECOND>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue defaultsTo(org.apache.hc.core.util.TimeValue,org.apache.hc.core.util.TimeValue)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue defaultsToZeroMilliseconds(org.apache.hc.core.util.TimeValue)
{
org.apache.hc.core.util.TimeValue v, v, v;
v := @parameter: org.apache.hc.core.util.TimeValue;
v = <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue ZERO_MILLISECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue defaultsTo(org.apache.hc.core.util.TimeValue,org.apache.hc.core.util.TimeValue)>(v, v);
return v;
}
public static boolean isNonNegative(org.apache.hc.core.util.TimeValue)
{
org.apache.hc.core.util.TimeValue v;
byte v;
long v;
boolean v;
v := @parameter: org.apache.hc.core.util.TimeValue;
if v == null goto label;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long getDuration()>();
v = v cmp 0L;
if v < 0 goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public static boolean isPositive(org.apache.hc.core.util.TimeValue)
{
org.apache.hc.core.util.TimeValue v;
byte v;
long v;
boolean v;
v := @parameter: org.apache.hc.core.util.TimeValue;
if v == null goto label;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long getDuration()>();
v = v cmp 0L;
if v <= 0 goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public static org.apache.hc.core.util.TimeValue of(long, java.util.concurrent.TimeUnit)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v := @parameter: java.util.concurrent.TimeUnit;
v = new org.apache.hc.core.util.TimeValue;
specialinvoke v.<org.apache.hc.core.util.TimeValue: void <init>(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue ofDays(long)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit DAYS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue ofHours(long)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit HOURS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue ofMicroseconds(long)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit MICROSECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue ofMilliseconds(long)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit MILLISECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue ofMinutes(long)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit MINUTES>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue ofNanoseconds(long)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit NANOSECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue ofSeconds(long)
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @parameter: long;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit SECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public static org.apache.hc.core.util.TimeValue parse(java.lang.String) throws java.text.ParseException
{
java.lang.Object[] v;
java.lang.String[] v;
long v;
java.util.Locale v;
int v;
java.lang.String v, v, v, v, v, v, v, v, v;
boolean v;
org.apache.hc.core.util.TimeValue v;
java.lang.IllegalArgumentException v;
java.util.concurrent.TimeUnit v;
v := @parameter: java.lang.String;
v = virtualinvoke v.<java.lang.String: java.lang.String trim()>();
v = virtualinvoke v.<java.lang.String: java.lang.String[] split(java.lang.String)>("\\s+");
v = lengthof v;
if v >= 2 goto label;
v = new java.lang.IllegalArgumentException;
v = newarray (java.lang.Object)[1];
v[0] = v;
v = staticinvoke <java.lang.String: java.lang.String format(java.lang.String,java.lang.Object[])>("Expected format for <Long><SPACE><java.util.concurrent.TimeUnit>: %s", v);
specialinvoke v.<java.lang.IllegalArgumentException: void <init>(java.lang.String)>(v);
throw v;
label:
v = v[0];
v = virtualinvoke v.<java.lang.String: java.lang.String trim()>();
v = v[1];
v = virtualinvoke v.<java.lang.String: java.lang.String trim()>();
v = <java.util.Locale: java.util.Locale ROOT>;
v = virtualinvoke v.<java.lang.String: java.lang.String toUpperCase(java.util.Locale)>(v);
v = virtualinvoke v.<java.lang.String: boolean endsWith(java.lang.String)>("S");
if v == 0 goto label;
v = v;
goto label;
label:
v = dynamicinvoke "makeConcatWithConstants" <java.lang.String (java.lang.String)>(v) <java.lang.invoke.StringConcatFactory: java.lang.invoke.CallSite makeConcatWithConstants(java.lang.invoke.MethodHandles$Lookup,java.lang.String,java.lang.invoke.MethodType,java.lang.String,java.lang.Object[])>("\u0001S");
label:
v = staticinvoke <java.lang.Long: long parseLong(java.lang.String)>(v);
v = staticinvoke <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit valueOf(java.lang.String)>(v);
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
void <init>(long, java.util.concurrent.TimeUnit)
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
java.lang.Object v;
long v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: long;
v := @parameter: java.util.concurrent.TimeUnit;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<org.apache.hc.core.util.TimeValue: long duration> = v;
v = staticinvoke <org.apache.hc.core.util.Args: java.lang.Object notNull(java.lang.Object,java.lang.String)>(v, "timeUnit");
v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit> = v;
return;
}
public long convert(java.util.concurrent.TimeUnit)
{
java.util.concurrent.TimeUnit v, v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: java.util.concurrent.TimeUnit;
staticinvoke <org.apache.hc.core.util.Args: java.lang.Object notNull(java.lang.Object,java.lang.String)>(v, "timeUnit");
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long convert(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public boolean equals(java.lang.Object)
{
org.apache.hc.core.util.TimeValue v;
long v, v;
java.util.concurrent.TimeUnit v, v;
byte v;
java.lang.Object v;
boolean v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: java.lang.Object;
if v != v goto label;
return 1;
label:
v = v instanceof org.apache.hc.core.util.TimeValue;
if v == 0 goto label;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit NANOSECONDS>;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long convert(java.util.concurrent.TimeUnit)>(v);
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit NANOSECONDS>;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long convert(java.util.concurrent.TimeUnit)>(v);
v = v cmp v;
if v != 0 goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
label:
return 0;
}
public org.apache.hc.core.util.TimeValue divide(long)
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v, v;
long v, v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: long;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = v / v;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public org.apache.hc.core.util.TimeValue divide(long, java.util.concurrent.TimeUnit)
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v, v;
long v, v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: long;
v := @parameter: java.util.concurrent.TimeUnit;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long convert(java.util.concurrent.TimeUnit)>(v);
v = v / v;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
public long getDuration()
{
long v;
org.apache.hc.core.util.TimeValue v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
return v;
}
public java.util.concurrent.TimeUnit getTimeUnit()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
return v;
}
public int hashCode()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
java.lang.Long v;
int v;
long v;
v := @this: org.apache.hc.core.util.TimeValue;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit NANOSECONDS>;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long convert(java.util.concurrent.TimeUnit)>(v);
v = staticinvoke <java.lang.Long: java.lang.Long valueOf(long)>(v);
v = staticinvoke <org.apache.hc.core.util.LangUtils: int hashCode(int,java.lang.Object)>(17, v);
return v;
}
public org.apache.hc.core.util.TimeValue min(org.apache.hc.core.util.TimeValue)
{
org.apache.hc.core.util.TimeValue v, v, v;
int v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: org.apache.hc.core.util.TimeValue;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: int compareTo(org.apache.hc.core.util.TimeValue)>(v);
if v <= 0 goto label;
v = v;
goto label;
label:
v = v;
label:
return v;
}
private java.util.concurrent.TimeUnit min(java.util.concurrent.TimeUnit)
{
java.util.concurrent.TimeUnit v, v;
org.apache.hc.core.util.TimeValue v;
int v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: java.util.concurrent.TimeUnit;
v = specialinvoke v.<org.apache.hc.core.util.TimeValue: int scale()>();
v = specialinvoke v.<org.apache.hc.core.util.TimeValue: int scale(java.util.concurrent.TimeUnit)>(v);
if v <= v goto label;
v = v;
goto label;
label:
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit getTimeUnit()>();
label:
return v;
}
private int scale()
{
int v;
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = specialinvoke v.<org.apache.hc.core.util.TimeValue: int scale(java.util.concurrent.TimeUnit)>(v);
return v;
}
private int scale(java.util.concurrent.TimeUnit)
{
java.util.concurrent.TimeUnit v;
java.lang.IllegalStateException v;
org.apache.hc.core.util.TimeValue v;
int[] v;
int v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: java.util.concurrent.TimeUnit;
v = <org.apache.hc.core.util.TimeValue$1: int[] $SwitchMap$java$util$concurrent$TimeUnit>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: int ordinal()>();
v = v[v];
tableswitch(v)
{
case 1: goto label;
case 2: goto label;
case 3: goto label;
case 4: goto label;
case 5: goto label;
case 6: goto label;
case 7: goto label;
default: goto label;
};
label:
return 1;
label:
return 2;
label:
return 3;
label:
return 4;
label:
return 5;
label:
return 6;
label:
return 7;
label:
v = new java.lang.IllegalStateException;
specialinvoke v.<java.lang.IllegalStateException: void <init>()>();
throw v;
}
public void sleep() throws java.lang.InterruptedException
{
java.util.concurrent.TimeUnit v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
virtualinvoke v.<java.util.concurrent.TimeUnit: void sleep(long)>(v);
return;
}
public void timedJoin(java.lang.Thread) throws java.lang.InterruptedException
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
java.lang.Thread v;
long v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: java.lang.Thread;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
virtualinvoke v.<java.util.concurrent.TimeUnit: void timedJoin(java.lang.Thread,long)>(v, v);
return;
}
public void timedWait(java.lang.Object) throws java.lang.InterruptedException
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
java.lang.Object v;
long v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: java.lang.Object;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
virtualinvoke v.<java.util.concurrent.TimeUnit: void timedWait(java.lang.Object,long)>(v, v);
return;
}
public long toDays()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long toDays(long)>(v);
return v;
}
public long toHours()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long toHours(long)>(v);
return v;
}
public long toMicroseconds()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long toMicros(long)>(v);
return v;
}
public long toMilliseconds()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long toMillis(long)>(v);
return v;
}
public int toMillisecondsIntBound()
{
int v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @this: org.apache.hc.core.util.TimeValue;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long toMilliseconds()>();
v = staticinvoke <org.apache.hc.core.util.TimeValue: int asBoundInt(long)>(v);
return v;
}
public long toMinutes()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long toMinutes(long)>(v);
return v;
}
public long toNanoseconds()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long toNanos(long)>(v);
return v;
}
public long toSeconds()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = virtualinvoke v.<java.util.concurrent.TimeUnit: long toSeconds(long)>(v);
return v;
}
public int toSecondsIntBound()
{
int v;
long v;
org.apache.hc.core.util.TimeValue v;
v := @this: org.apache.hc.core.util.TimeValue;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long toSeconds()>();
v = staticinvoke <org.apache.hc.core.util.TimeValue: int asBoundInt(long)>(v);
return v;
}
public int compareTo(org.apache.hc.core.util.TimeValue)
{
java.util.concurrent.TimeUnit v, v;
org.apache.hc.core.util.TimeValue v, v;
int v;
long v, v;
v := @this: org.apache.hc.core.util.TimeValue;
v := @parameter: org.apache.hc.core.util.TimeValue;
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit getTimeUnit()>();
v = specialinvoke v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit min(java.util.concurrent.TimeUnit)>(v);
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long convert(java.util.concurrent.TimeUnit)>(v);
v = virtualinvoke v.<org.apache.hc.core.util.TimeValue: long convert(java.util.concurrent.TimeUnit)>(v);
v = staticinvoke <java.lang.Long: int compare(long,long)>(v, v);
return v;
}
public java.lang.String toString()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
java.lang.Object[] v;
java.lang.Long v;
long v;
java.lang.String v;
v := @this: org.apache.hc.core.util.TimeValue;
v = newarray (java.lang.Object)[2];
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = staticinvoke <java.lang.Long: java.lang.Long valueOf(long)>(v);
v[0] = v;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v[1] = v;
v = staticinvoke <java.lang.String: java.lang.String format(java.lang.String,java.lang.Object[])>("%d %s", v);
return v;
}
public org.apache.hc.core.util.Timeout toTimeout()
{
java.util.concurrent.TimeUnit v;
org.apache.hc.core.util.TimeValue v;
long v;
org.apache.hc.core.util.Timeout v;
v := @this: org.apache.hc.core.util.TimeValue;
v = v.<org.apache.hc.core.util.TimeValue: long duration>;
v = v.<org.apache.hc.core.util.TimeValue: java.util.concurrent.TimeUnit timeUnit>;
v = staticinvoke <org.apache.hc.core.util.Timeout: org.apache.hc.core.util.Timeout of(long,java.util.concurrent.TimeUnit)>(v, v);
return v;
}
static void <clinit>()
{
java.util.concurrent.TimeUnit v, v, v;
org.apache.hc.core.util.TimeValue v, v, v, v;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue ofDays(long)>(9223372036854775807L);
<org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue MAX_VALUE> = v;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit MILLISECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(-1L, v);
<org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue NEG_ONE_MILLISECOND> = v;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit SECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(-1L, v);
<org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue NEG_ONE_SECOND> = v;
v = <java.util.concurrent.TimeUnit: java.util.concurrent.TimeUnit MILLISECONDS>;
v = staticinvoke <org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue of(long,java.util.concurrent.TimeUnit)>(0L, v);
<org.apache.hc.core.util.TimeValue: org.apache.hc.core.util.TimeValue ZERO_MILLISECONDS> = v;
return;
}
}