Lines Matching refs:Object
37 static public Type getType( Object object ) in getType()
62 static public boolean isVoid(Object object){ in isVoid()
70 static public boolean isChar(Object object){ in isChar()
78 static public boolean isBoolean(Object object){ in isBoolean()
86 static public boolean isByte(Object object){ in isByte()
94 static public boolean isShort(Object object){ in isShort()
102 static public boolean isInt(Object object){ in isInt()
110 static public boolean isLong(Object object){ in isLong()
118 static public boolean isFloat(Object object){ in isFloat()
126 static public boolean isDouble(Object object){ in isDouble()
134 static public boolean isString(Object object){ in isString()
142 static public boolean isEnum(Object object) in isEnum()
151 static public boolean isType(Object object){ in isType()
162 static public boolean isObject(Object object) in isObject()
177 static public boolean isArray(Object object){ in isArray()
187 static public char toChar(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toChar()
198 static public boolean toBoolean(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toBoolean()
209 static public byte toByte(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toByte()
220 static public short toShort(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toShort()
231 static public short toUnsignedShort(Object object) in toUnsignedShort()
244 static public int toInt(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toInt()
255 static public int toUnsignedInt(Object object) in toUnsignedInt()
269 static public long toLong(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toLong()
282 static public long toUnsignedLong(Object object) in toUnsignedLong()
296 static public float toFloat(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toFloat()
308 static public double toDouble(Object object) throws com.sun.star.lang.IllegalArgumentException { in toDouble()
318 static public String toString(Object object) throws com.sun.star.lang.IllegalArgumentException { in toString()
327 static public Type toType(Object object) throws com.sun.star.lang.IllegalArgumentException { in toType()
343 static public Object toObject(Type type, Object object) in toObject()
360 static public Object toObject(Class clazz, Object object) in toObject()
371 static public Object toArray( Object object) throws com.sun.star.lang.IllegalArgumentException { in toArray()
380 static private boolean containsType( TypeClass what, Object object){ in containsType()
386 static private Object convertSimple( TypeClass destTClass, Type destType, Object object_ ) in convertSimple()
389 Object object; in convertSimple()