| com.db4o.reflect.ReflectClass
All known Subclasses: com.db4o.db4ounit.common.reflect.custom.CustomClass, com.db4o.reflect.generic.GenericClass, com.db4o.reflect.self.SelfClass,
ReflectClass | public interface ReflectClass (Code) | | representation for java.lang.Class.
See the respective documentation in the JDK API.
See Also: Reflector |
getDelegate | public ReflectClass getDelegate()(Code) | | Returns the ReflectClass instance being delegated to.
If there's no delegation it should return this.
delegate or this |
isAbstract | public boolean isAbstract()(Code) | | |
isArray | public boolean isArray()(Code) | | |
isCollection | public boolean isCollection()(Code) | | |
isInterface | public boolean isInterface()(Code) | | |
isPrimitive | public boolean isPrimitive()(Code) | | |
isSecondClass | public boolean isSecondClass()(Code) | | |
skipConstructor | public boolean skipConstructor(boolean flag, boolean testConstructor)(Code) | | instructs to install or uninstall a special constructor for the
respective platform that avoids calling the constructor for the
respective class
Parameters: flag - true to try to install a special constructor, false ifsuch a constructor is to be removed if present Parameters: testConstructor - true, if the special constructor shall be tested, false if it shall be set without testing true if the special constructor is in place after the call |
|
|