abstract class com.github.benmanes.caffeine.cache.Node extends java.lang.Object implements com.github.benmanes.caffeine.cache.AccessOrderDeque$AccessOrder, com.github.benmanes.caffeine.cache.WriteOrderDeque$WriteOrder
{
public static final int WINDOW;
public static final int PROBATION;
public static final int PROTECTED;
void <init>()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
specialinvoke v.<java.lang.Object: void <init>()>();
return;
}
public abstract java.lang.Object getKey();
public abstract java.lang.Object getKeyReference();
public abstract java.lang.Object getValue();
public abstract java.lang.Object getValueReference();
public abstract void setValue(java.lang.Object, java.lang.ref.ReferenceQueue);
public abstract boolean containsValue(java.lang.Object);
public int getWeight()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return 1;
}
public void setWeight(int)
{
int v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: int;
return;
}
public int getPolicyWeight()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return 1;
}
public void setPolicyWeight(int)
{
int v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: int;
return;
}
public abstract boolean isAlive();
public abstract boolean isRetired();
public abstract boolean isDead();
public abstract void retire();
public abstract void die();
public long getVariableTime()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return 0L;
}
public void setVariableTime(long)
{
long v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: long;
return;
}
public boolean casVariableTime(long, long)
{
java.lang.UnsupportedOperationException v;
long v, v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: long;
v := @parameter: long;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public com.github.benmanes.caffeine.cache.Node getPreviousInVariableOrder()
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public void setPreviousInVariableOrder(com.github.benmanes.caffeine.cache.Node)
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v, v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public com.github.benmanes.caffeine.cache.Node getNextInVariableOrder()
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public void setNextInVariableOrder(com.github.benmanes.caffeine.cache.Node)
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v, v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public boolean inWindow()
{
int v;
com.github.benmanes.caffeine.cache.Node v;
boolean v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: int getQueueType()>();
if v != 0 goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public boolean inMainProbation()
{
int v;
com.github.benmanes.caffeine.cache.Node v;
boolean v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: int getQueueType()>();
if v != 1 goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public boolean inMainProtected()
{
int v;
com.github.benmanes.caffeine.cache.Node v;
boolean v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: int getQueueType()>();
if v != 2 goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public void makeWindow()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: void setQueueType(int)>(0);
return;
}
public void makeMainProbation()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: void setQueueType(int)>(1);
return;
}
public void makeMainProtected()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: void setQueueType(int)>(2);
return;
}
public int getQueueType()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return 0;
}
public void setQueueType(int)
{
int v;
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: int;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public long getAccessTime()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return 0L;
}
public void setAccessTime(long)
{
long v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: long;
return;
}
public com.github.benmanes.caffeine.cache.Node getPreviousInAccessOrder()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return null;
}
public void setPreviousInAccessOrder(com.github.benmanes.caffeine.cache.Node)
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v, v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public com.github.benmanes.caffeine.cache.Node getNextInAccessOrder()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return null;
}
public void setNextInAccessOrder(com.github.benmanes.caffeine.cache.Node)
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v, v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public long getWriteTime()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return 0L;
}
public void setWriteTime(long)
{
long v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: long;
return;
}
public boolean casWriteTime(long, long)
{
java.lang.UnsupportedOperationException v;
long v, v;
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: long;
v := @parameter: long;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public com.github.benmanes.caffeine.cache.Node getPreviousInWriteOrder()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return null;
}
public void setPreviousInWriteOrder(com.github.benmanes.caffeine.cache.Node)
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v, v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public com.github.benmanes.caffeine.cache.Node getNextInWriteOrder()
{
com.github.benmanes.caffeine.cache.Node v;
v := @this: com.github.benmanes.caffeine.cache.Node;
return null;
}
public void setNextInWriteOrder(com.github.benmanes.caffeine.cache.Node)
{
java.lang.UnsupportedOperationException v;
com.github.benmanes.caffeine.cache.Node v, v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v := @parameter: com.github.benmanes.caffeine.cache.Node;
v = new java.lang.UnsupportedOperationException;
specialinvoke v.<java.lang.UnsupportedOperationException: void <init>()>();
throw v;
}
public final java.lang.String toString()
{
java.lang.Object[] v;
long v, v, v;
java.lang.Integer v, v;
java.lang.Long v, v, v;
java.util.Locale v;
int v, v;
java.lang.Boolean v, v, v, v;
java.lang.String v, v;
com.github.benmanes.caffeine.cache.Node v, v, v, v, v;
boolean v, v, v, v;
java.lang.Class v;
java.lang.Object v, v;
v := @this: com.github.benmanes.caffeine.cache.Node;
v = <java.util.Locale: java.util.Locale US>;
v = newarray (java.lang.Object)[12];
v = virtualinvoke v.<java.lang.Object: java.lang.Class getClass()>();
v = virtualinvoke v.<java.lang.Class: java.lang.String getSimpleName()>();
v[0] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: java.lang.Object getKey()>();
v[1] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: java.lang.Object getValue()>();
v[2] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: int getWeight()>();
v = staticinvoke <java.lang.Integer: java.lang.Integer valueOf(int)>(v);
v[3] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: int getQueueType()>();
v = staticinvoke <java.lang.Integer: java.lang.Integer valueOf(int)>(v);
v[4] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: long getAccessTime()>();
v = staticinvoke <java.lang.Long: java.lang.Long valueOf(long)>(v);
v[5] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: long getWriteTime()>();
v = staticinvoke <java.lang.Long: java.lang.Long valueOf(long)>(v);
v[6] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: long getVariableTime()>();
v = staticinvoke <java.lang.Long: java.lang.Long valueOf(long)>(v);
v[7] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: com.github.benmanes.caffeine.cache.Node getPreviousInAccessOrder()>();
if v == null goto label;
v = 1;
goto label;
label:
v = 0;
label:
v = staticinvoke <java.lang.Boolean: java.lang.Boolean valueOf(boolean)>(v);
v[8] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: com.github.benmanes.caffeine.cache.Node getNextInAccessOrder()>();
if v == null goto label;
v = 1;
goto label;
label:
v = 0;
label:
v = staticinvoke <java.lang.Boolean: java.lang.Boolean valueOf(boolean)>(v);
v[9] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: com.github.benmanes.caffeine.cache.Node getPreviousInWriteOrder()>();
if v == null goto label;
v = 1;
goto label;
label:
v = 0;
label:
v = staticinvoke <java.lang.Boolean: java.lang.Boolean valueOf(boolean)>(v);
v[10] = v;
v = virtualinvoke v.<com.github.benmanes.caffeine.cache.Node: com.github.benmanes.caffeine.cache.Node getNextInWriteOrder()>();
if v == null goto label;
v = 1;
goto label;
label:
v = 0;
label:
v = staticinvoke <java.lang.Boolean: java.lang.Boolean valueOf(boolean)>(v);
v[11] = v;
v = staticinvoke <java.lang.String: java.lang.String format(java.util.Locale,java.lang.String,java.lang.Object[])>(v, "%s=[key=%s, value=%s, weight=%d, queueType=%,d, accessTimeNS=%,d, writeTimeNS=%,d, varTimeNs=%,d, prevInAccess=%s, nextInAccess=%s, prevInWrite=%s, nextInWrite=%s]", v);
return v;
}
}