public class Callable extends Object
Modifier and Type | Class and Description |
---|---|
static class |
Callable.Type |
Modifier and Type | Field and Description |
---|---|
static int |
CAN_BE_INVALIDATED |
static int |
DYNAMIC |
String |
name |
ModelClass |
resolvedType |
String |
setterName |
static int |
STATIC |
Callable.Type |
type |
Constructor and Description |
---|
Callable(Callable.Type type,
String name,
String setterName,
ModelClass resolvedType,
int parameterCount,
int flags) |
Modifier and Type | Method and Description |
---|---|
boolean |
canBeInvalidated() |
int |
getMinApi() |
int |
getParameterCount() |
String |
getTypeCodeName() |
boolean |
isDynamic() |
boolean |
isStatic() |
String |
toString()
Returns a string representation of the object.
|
public static final int DYNAMIC
public static final int CAN_BE_INVALIDATED
public static final int STATIC
public final Callable.Type type
public final String name
public final String setterName
public final ModelClass resolvedType
public Callable(Callable.Type type, String name, String setterName, ModelClass resolvedType, int parameterCount, int flags)
public String getTypeCodeName()
public int getParameterCount()
public boolean isDynamic()
public boolean isStatic()
public boolean canBeInvalidated()
public int getMinApi()
public String toString()
Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())