Package org.springframework.nativex.hint
Class ProxyBits
- java.lang.Object
-
- org.springframework.nativex.hint.ProxyBits
-
public class ProxyBits extends Object
Specifies the special behaviours that need to supported by class proxies when they are generated.- Author:
- Andy Clement
-
-
Field Summary
Fields Modifier and Type Field Description static int
EXPOSE_PROXY
static int
IS_FROZEN
static int
IS_OPAQUE
static int
IS_STATIC
static int
NONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object that)
static ProxyBits
forBits(int... bits)
static ProxyBits
forValue(int value)
int
getValue()
int
hashCode()
static boolean
isSet(int value, int mask)
String
toString()
static String
toString(Integer value)
ProxyBits
with(ProxyBits accessRequired)
-
-
-
Field Detail
-
NONE
public static final int NONE
- See Also:
- Constant Field Values
-
EXPOSE_PROXY
public static final int EXPOSE_PROXY
- See Also:
- Constant Field Values
-
IS_STATIC
public static final int IS_STATIC
- See Also:
- Constant Field Values
-
IS_FROZEN
public static final int IS_FROZEN
- See Also:
- Constant Field Values
-
IS_OPAQUE
public static final int IS_OPAQUE
- See Also:
- Constant Field Values
-
-