public interface IAny
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
NAME |
static int |
NUM_BYTE |
static int |
NUM_DOUBLE |
static int |
NUM_FLOAT |
static int |
NUM_INT |
static int |
NUM_LONG |
static int |
NUM_SHORT |
| Modifier and Type | Method and Description |
|---|---|
IAny |
add(IAny value) |
IAny |
and(IAny value) |
<T> T |
as(java.lang.Class<T> cls) |
boolean |
asBool() |
byte |
asByte() |
double |
asDouble() |
float |
asFloat() |
int |
asInt() |
long |
asLong() |
short |
asShort() |
java.lang.String |
asString() |
IAny |
call(IAny... values) |
boolean |
canCastImplicit(java.lang.Class<?> cls) |
IAny |
cat(IAny value) |
int |
compareTo(IAny value) |
boolean |
contains(IAny value) |
IAny |
div(IAny value) |
int |
getNumberType() |
IAny |
indexGet(IAny key) |
void |
indexSet(IAny key,
IAny value) |
boolean |
is(java.lang.Class<?> cls) |
java.util.Iterator<IAny[]> |
iteratorMulti(int n) |
java.util.Iterator<IAny> |
iteratorSingle() |
IAny |
memberCall(java.lang.String member,
IAny... values) |
IAny |
memberGet(java.lang.String member) |
void |
memberSet(java.lang.String member,
IAny value) |
IAny |
mod(IAny value) |
IAny |
mul(IAny value) |
IAny |
neg() |
IAny |
not() |
IAny |
or(IAny value) |
IAny |
range(IAny value) |
IAny |
sub(IAny value) |
IAny |
xor(IAny value) |
static final java.lang.String NAME
static final int NUM_BYTE
static final int NUM_SHORT
static final int NUM_INT
static final int NUM_LONG
static final int NUM_FLOAT
static final int NUM_DOUBLE
IAny not()
IAny neg()
int compareTo(IAny value)
boolean contains(IAny value)
IAny memberGet(java.lang.String member)
void memberSet(java.lang.String member,
IAny value)
boolean asBool()
byte asByte()
short asShort()
int asInt()
long asLong()
float asFloat()
double asDouble()
java.lang.String asString()
<T> T as(java.lang.Class<T> cls)
boolean is(java.lang.Class<?> cls)
boolean canCastImplicit(java.lang.Class<?> cls)
int getNumberType()
java.util.Iterator<IAny> iteratorSingle()
java.util.Iterator<IAny[]> iteratorMulti(int n)