Tagged Questions

SnakeYAML is a YAML parser and emitter for the Java programming language.

learn more… | top users | synonyms

3
votes
1answer
373 views

How to define a Map in a YAML file in the Play! framework?

I'm using the Play! framework and I have a model (an Entity) that has a variable of type Map. To make some tests, I load a YAML file every time I start the application, but I don't know the syntax to ...
2
votes
2answers
91 views

yaml scientific notation syntax

While working with a yaml document, I found that one of my values was getting parsed as a string with snakeyaml: -8e-05 I found that ros, which uses yaml-cpp to write yamls is using the following ...
2
votes
2answers
669 views

How do I load a (static nested) enum value from YAML fixtures in the Play Framework?

public class Request extends Model { public static enum Category { First, Second, Third } public Category category; } I seem unable to properly create a Request with a ...
1
vote
1answer
156 views

Walkthrough of SnakeYAML in Java

I need to read some values and variables from a .yml file and thats it, write them to a String and thats all I need? How would I do this?
1
vote
1answer
208 views

Bind to an inner class in SnakeYAML / Play framework

I have a model like this: package models; @Entity public class Order extends Model { @Entity public static class Line extends Model { } } How can I load fixtures for ...
1
vote
1answer
96 views

Way to determine the type of an object and then cast an object from snake yaml.load(InputStream)

So I'm writing this utility class for all my model objects to inherit from so that whenever I call saveToFile(filename) it will save that object in a yaml format. To String just outputs the file in ...
1
vote
2answers
100 views

Yaml ambiguity; indentation spaces and empty node

I wrote: a: -b -c Parser understood it as: !!map { ? !!str "a" : !!seq [ !!str "b", !!str "c" ] } But I meant: !!map { ? !!str "a" : !!null "" } !!seq [ !!str "b", ...
1
vote
1answer
169 views

SnakeYAML: How to disable underscore stripping when parsing?

Here's my problem. I have YAML doc that contains the following pair: run_ID: 2010_03_31_101 When this get's parsed at org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlInt:159 underscores ...
1
vote
2answers
393 views

Serializing ENUM Singleton

I'm trying to serialize an ENUM singleton instance (as described by Joshua Bloch in his book Effective Java) to a file. The ENUM instance is a simple JavaBean as this: public enum ElvisFan implements ...
1
vote
2answers
1k views

Has anyone succesfully loaded a YAML file using SnakeYAML from a local Maven repo?

If I reference the SnakeYAML jar directly from a test program (see bottom), everything works. If I'm inside my Maven-created project, I get the following output from my unit tests: ...
0
votes
1answer
15 views

How to convert the yaml file into a array using java

i need to access the yaml file data into the java file. i used the YamlReader class and now the yaml file is loaded into the java class object. now all the information is in object and i want to ...
0
votes
0answers
9 views

Is it possible to assign a JSON value inside a YAML definition?

For my domain object I would like to be able to assign a JSON literal to a key when using yaml, more specifically snakeyaml. Here is what I would be able to use: ContentType(teaser): name: teaser ...
0
votes
1answer
37 views

How to load a java.util.Set with snakeYAML

I try to load the following yaml sequence : - Person(paul): firstName: Paul lastName: Lumbergh children : - Person(bill) - Person(jane) which i tried to load in the following bean : ...
0
votes
1answer
14 views

Is there a SnakeYaml DumperOptions setting to avoid double-spacing output?

I seem to see double-spaced output when parsing/dumping a simple YAML file with a pipe-text field. The test is: public void yamlTest() { DumperOptions printOptions = new DumperOptions(); ...
0
votes
2answers
65 views

Java Serialization with YAML (SnakeYaml Library), HashMaps are not shown in serialized output

when i serialize a class object such that: class MyClass{ String value; public MyClass(){} public void setValue(String value){ this.value = value; } public String getValue(){ ...
0
votes
1answer
51 views

Serializing Object to YAML in Java using snakeyaml Library

I do not have much experience with Serialization. While trying to serialize a simple object of the class below i get this No JavaBean properties found exception from YAML library. Here is the ...
0
votes
1answer
38 views

How to get values into an array using SnakeYAML

Say I have: item: field: value another: another Is there any way for me to get it in an array as this form: [value, another] Can this be done without much hassle using SnakeYAML in java?
0
votes
1answer
64 views

Is this a valid method of using YAML?

I am new to snakeyaml and yaml in general. I need it to store information about "rooms" for a MUD. The entries for the rooms will look something like this: room: id: 12 entry: "Long string" ...
0
votes
1answer
102 views

Unable to run unit tests with Snakeyaml in IntelliJ

I have created a Java component which reads a YAML file using SnakeYaml. The environment I use is IntelliJ with a Maven plug-in and my project is built using a Maven pom file. When I run the Maven ...
0
votes
2answers
334 views

snakeYAML JAVA: using the object produced

I am attempting to use snakeYAML to load a YAML file into an object in an Android Java Class. How do I access the members of the resulting object? Yaml yaml = new Yaml(); Object data = ...
0
votes
2answers
304 views

PyYaml to SnakeYaml — AWT-EventQueue-0" Can't construct a java object for tag:yaml.org,2002:java/object:

I am passing Yaml created with PyYaml to SnakeYaml and Snakeyaml does not seem to recognize anything beyond the first line where !! exists and python/object is declared. I already have identical ...
0
votes
2answers
237 views

Using SnakeYaml under OSGi?

Does SnakeYaml work within an OSGi framework? I've modified the MANIFEST & such so that it deploys correctly, but but trying to load a document into a JavaBean object structure is failing with ...
0
votes
1answer
188 views

Bidirectional relationship in yaml

I am using Snakeyaml for building my domain graph. I couldn't find the right syntax for it. Please see the domain model, and the yaml. public class Person { String fullname; ...
0
votes
1answer
564 views

YAML - one to many object graph

I use a snakeyaml (java) based parser to write a test case, and couldn't figure out how to properly build the graph. Any help, highly appreciated. thanks. RuntimeException occured : Cannot load ...