/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
ImmutablesRepresenter.java | 33 this.representers.put(java.awt.Color.class, new RepresentColor()); 34 this.representers.put(Insets.class, new RepresentInsets()); 35 this.representers.put(MatteBorder.class, new RepresentMatteBorder()); 36 this.representers.put(Rectangle.class, new RepresentRectangle());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
Example2_24Test.java | 96 this.representers.put(Shape.class, new RepresentShape()); 97 this.representers.put(Circle.class, new RepresentCircle()); 98 this.representers.put(Line.class, new RepresentLine()); 99 this.representers.put(Label.class, new RepresentLabel()); 100 this.representers.put(HexInteger.class, new RepresentHex());
|
JavaBeanWithNullValuesTest.java | 153 this.representers.put(Float.class, new RepresentFloat()); 154 this.representers.put(Long.class, new RepresentLong()); 155 this.representers.put(java.sql.Date.class, new RepresentDate()); 156 this.representers.put(java.sql.Timestamp.class, new RepresentTime());
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/ |
SafeRepresenter.java | 50 this.representers.put(String.class, new RepresentString()); 51 this.representers.put(Boolean.class, new RepresentBoolean()); 52 this.representers.put(Character.class, new RepresentString()); 53 this.representers.put(UUID.class, new RepresentUuid()); 54 this.representers.put(byte[].class, new RepresentByteArray()); 57 representers.put(short[].class, primitiveArray); 58 representers.put(int[].class, primitiveArray); 59 representers.put(long[].class, primitiveArray); 60 representers.put(float[].class, primitiveArray); 61 representers.put(double[].class, primitiveArray) [all...] |
BaseRepresenter.java | 40 protected final Map<Class<?>, Represent> representers = new HashMap<Class<?>, Represent>(); field in class:BaseRepresenter 86 if (representers.containsKey(clazz)) { 87 Represent representer = representers.get(clazz); 104 Represent representer = representers.get(null);
|
Representer.java | 44 this.representers.put(null, new RepresentJavaBean());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/primitives/ |
ImmutablePrimitivesRepresenter.java | 28 this.representers.put(BunchOfPrimitives.class, new RepresentPrimitives());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue171/ |
CustomRepresenter.java | 25 this.representers.put(ClassWithGenericMap.class, new RepresentClassX());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue127/ |
NullAliasTest.java | 43 this.representers.put(Bean.class, new RepresentBean());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/ |
ResolverTest.java | 102 this.representers.put(Phone.class, new RepresentPhone()); 129 this.representers.put(Point.class, new RepresentPoint()); 130 this.representers.put(Phone.class, new RepresentPhone());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue310/ |
PropertyWithPrivateCostructorTest.java | 32 this.representers.put(Option.class, new RepresentOption());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue46/ |
FileTest.java | 52 this.representers.put(File.class, new FileRepresenter());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue64/ |
ParameterizedTypeTest.java | 58 this.representers.put(Class.class, new RepresentClass());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/ |
RepresentTest.java | 66 this.representers.put(CustomBean.class, new RepresentDice());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue11/ |
YamlMapTest.java | 122 this.representers.put(Custom.class, new RepresentCustom());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/ |
FlexibleScalarStyleTest.java | 95 this.representers.put(String.class, new FlexibleRepresent());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue311/ |
BooleanEnumTest.java | 64 this.representers.put(BooleanEnum.class, new RepresentEnum());
|
/external/snakeyaml/src/test/java8/org/yaml/snakeyaml/issues/issue310/ |
OptionalTest.java | 112 this.representers.put(Optional.class, new RepresentOptional());
|
/external/snakeyaml/src/test/java/examples/ |
DiceExampleTest.java | 56 this.representers.put(Dice.class, new RepresentDice());
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/ |
BoolTagTest.java | 116 this.representers.put(Boolean.class, new RepresentBool());
|