Lines Matching defs:object

41     public static Type getType( Object object )  in getType()
68 public static boolean isVoid(Object object){ in isVoid()
78 public static boolean isChar(Object object){ in isChar()
88 public static boolean isBoolean(Object object){ in isBoolean()
98 public static boolean isByte(Object object){ in isByte()
108 public static boolean isShort(Object object){ in isShort()
119 public static boolean isInt(Object object){ in isInt()
130 public static boolean isLong(Object object){ in isLong()
140 public static boolean isFloat(Object object){ in isFloat()
150 public static boolean isDouble(Object object){ in isDouble()
160 public static boolean isString(Object object){ in isString()
170 public static boolean isEnum(Object object) in isEnum()
181 public static boolean isType(Object object){ in isType()
195 public static boolean isObject(Object object) in isObject()
213 public static boolean isArray(Object object){ in isArray()
228 public static char toChar(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toChar()
244 … public static boolean toBoolean(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toBoolean()
260 public static byte toByte(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toByte()
276 public static short toShort(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toShort()
292 public static short toUnsignedShort(Object object) in toUnsignedShort()
311 public static int toInt(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toInt()
328 public static int toUnsignedInt(Object object) in toUnsignedInt()
347 public static long toLong(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toLong()
364 public static long toUnsignedLong(Object object) in toUnsignedLong()
383 public static float toFloat(Object object) throws com.sun.star.lang.IllegalArgumentException{ in toFloat()
400 public static double toDouble(Object object) throws com.sun.star.lang.IllegalArgumentException { in toDouble()
414 public static String toString(Object object) throws com.sun.star.lang.IllegalArgumentException { in toString()
427 public static Type toType(Object object) throws com.sun.star.lang.IllegalArgumentException { in toType()
449 public static Object toObject(Type type, Object object) in toObject()
471 public static Object toObject(Class<?> clazz, Object object) in toObject()
486 public static Object toArray( Object object) throws com.sun.star.lang.IllegalArgumentException { in toArray()
497 private static boolean containsType( TypeClass what, Object object){ in containsType()
506 Object object; in convertSimple() local