|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.intersys.objects.reflect.CacheModifier
Field Summary | |
static int |
BY_REFERENCE
Indicates that a argument is passed by reference. |
static int |
HAS_DEFAULT_VALUE
Indicates that a argument or porperty has default value. |
static int |
LITERAL
Indicate that property or argument is of literal not object type |
static int |
READ_ONLY
Indicate that property is read-only and can not be set |
static int |
RETURNS_VALUE
Indicates that a method is non-void function |
static int |
SERVER_ONLY
Indicate that Method is server only and can not be called from Java Client. |
static int |
STATIC
Indicates that a method defined as a class-type. |
Constructor Summary | |
CacheModifier()
|
Method Summary | |
static boolean |
byReference(int mod)
|
static boolean |
hasDefaultValue(int mod)
|
static boolean |
isLiteral(int mod)
|
static boolean |
isReadOnly(int mod)
|
static boolean |
isServerOnly(int mod)
|
static boolean |
isStatic(int mod)
|
static boolean |
returnsValue(int mod)
|
static String |
toString(int mod)
|
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final int STATIC
public static final int BY_REFERENCE
public static final int HAS_DEFAULT_VALUE
public static final int RETURNS_VALUE
public static final int LITERAL
public static final int READ_ONLY
public static final int SERVER_ONLY
Constructor Detail |
public CacheModifier()
Method Detail |
public static boolean isStatic(int mod)
true
if the specified integer
includes the STATIC
modifier.public static boolean byReference(int mod)
true
if the specified integer
includes the BY_REFERENCE
modifier.public static boolean hasDefaultValue(int mod)
true
if the specified integer
includes the HAS_DEFAULT_VALUE
modifier.public static boolean returnsValue(int mod)
true
if the specified integer
includes the RETURNS_VALUE
modifier.public static boolean isLiteral(int mod)
true
if the specified integer
includes the LITERAL
modifier.public static boolean isServerOnly(int mod)
true
if the specified integer
includes the SERVER_ONLY
modifier.public static boolean isReadOnly(int mod)
true
if the specified integer
includes the READ_ONLY
modifier.public static String toString(int mod)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |