Lines Matching refs:BasicAFT
18 public final class BasicAFT extends ScalarAFT { class
36 private BasicAFT(Class<?> type) { in BasicAFT() method in BasicAFT
46 public static BasicAFT forType(Class<?> type) { in forType()
55 public static final Map<Class<?>, BasicAFT> bafts;
58 Map<Class<?>, BasicAFT> tempBafts =
59 new HashMap<Class<?>, BasicAFT>(9);
60 tempBafts.put(byte.class, new BasicAFT(byte.class)); in tempBafts.put()
61 tempBafts.put(short.class, new BasicAFT(short.class)); in tempBafts.put()
62 tempBafts.put(int.class, new BasicAFT(int.class)); in tempBafts.put()
63 tempBafts.put(long.class, new BasicAFT(long.class)); in tempBafts.put()
64 tempBafts.put(float.class, new BasicAFT(float.class)); in tempBafts.put()
65 tempBafts.put(double.class, new BasicAFT(double.class)); in tempBafts.put()
66 tempBafts.put(char.class, new BasicAFT(char.class)); in tempBafts.put()
67 tempBafts.put(boolean.class, new BasicAFT(boolean.class)); in tempBafts.put()
68 tempBafts.put(String.class, new BasicAFT(String.class)); in tempBafts.put()