| D | BaseRepresenter.java | 35 * Represent basic YAML structures: scalar, sequence, mapping 39 protected final Map<Class<?>, Represent> representers = new HashMap<Class<?>, Represent>(); 44 protected Represent nullRepresenter; 46 protected final Map<Class<?>, Represent> multiRepresenters = 47 new LinkedHashMap<Class<?>, Represent>(); 62 public Node represent(Object data) { in represent() method in BaseRepresenter 86 Represent representer = representers.get(clazz); in representData() 92 Represent representer = multiRepresenters.get(repr); in representData() 100 Represent representer = multiRepresenters.get(null); in representData() 103 Represent representer = representers.get(null); in representData()
|