Searched refs:TypeException (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/com/android/internal/util/ |
D | TypedProperties.java | 418 public static class TypeException extends IllegalArgumentException { class in TypedProperties 419 TypeException(String property, Object value, String requestedType) { in TypeException() method in TypedProperties.TypeException 442 throw new TypeException(property, value, "boolean"); in getBoolean() 462 throw new TypeException(property, value, "byte"); in getByte() 482 throw new TypeException(property, value, "short"); in getShort() 502 throw new TypeException(property, value, "int"); in getInt() 522 throw new TypeException(property, value, "long"); in getLong() 542 throw new TypeException(property, value, "float"); in getFloat() 562 throw new TypeException(property, value, "double"); in getDouble() 584 throw new TypeException(property, value, "string"); in getString()
|