final class com.google.common.base.CharMatcher$JavaDigit extends com.google.common.base.CharMatcher
{
static final com.google.common.base.CharMatcher$JavaDigit INSTANCE;
private void <init>()
{
com.google.common.base.CharMatcher$JavaDigit v;
v := @this: com.google.common.base.CharMatcher$JavaDigit;
specialinvoke v.<com.google.common.base.CharMatcher: void <init>()>();
return;
}
public boolean matches(char)
{
char v;
com.google.common.base.CharMatcher$JavaDigit v;
boolean v;
v := @this: com.google.common.base.CharMatcher$JavaDigit;
v := @parameter: char;
v = staticinvoke <java.lang.Character: boolean isDigit(char)>(v);
return v;
}
public java.lang.String toString()
{
com.google.common.base.CharMatcher$JavaDigit v;
v := @this: com.google.common.base.CharMatcher$JavaDigit;
return "CharMatcher.javaDigit()";
}
static void <clinit>()
{
com.google.common.base.CharMatcher$JavaDigit v;
v = new com.google.common.base.CharMatcher$JavaDigit;
specialinvoke v.<com.google.common.base.CharMatcher$JavaDigit: void <init>()>();
<com.google.common.base.CharMatcher$JavaDigit: com.google.common.base.CharMatcher$JavaDigit INSTANCE> = v;
return;
}
}