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