Lines Matching defs:class
146 handlers.put(boolean.class, new BooleanHandler()); in handlers.put()
147 handlers.put(Boolean.class, new BooleanHandler()); in handlers.put()
149 handlers.put(byte.class, new ByteHandler()); in handlers.put()
150 handlers.put(Byte.class, new ByteHandler()); in handlers.put()
151 handlers.put(short.class, new ShortHandler()); in handlers.put()
152 handlers.put(Short.class, new ShortHandler()); in handlers.put()
153 handlers.put(int.class, new IntegerHandler()); in handlers.put()
154 handlers.put(Integer.class, new IntegerHandler()); in handlers.put()
155 handlers.put(long.class, new LongHandler()); in handlers.put()
156 handlers.put(Long.class, new LongHandler()); in handlers.put()
158 handlers.put(float.class, new FloatHandler()); in handlers.put()
159 handlers.put(Float.class, new FloatHandler()); in handlers.put()
160 handlers.put(double.class, new DoubleHandler()); in handlers.put()
161 handlers.put(Double.class, new DoubleHandler()); in handlers.put()
163 handlers.put(String.class, new StringHandler()); in handlers.put()
164 handlers.put(File.class, new FileHandler()); in handlers.put()