Giter Club home page Giter Club logo

Comments (3)

omega0verride avatar omega0verride commented on June 1, 2024 1

Thank you @Carleslc!
This works like a charm for my requirements:
yamlFile.addDefault("default", new QuoteValue<>("test", QuoteStyle.DOUBLE));

from simple-yaml.

Carleslc avatar Carleslc commented on June 1, 2024

If you want to set a single default value with a custom quote style you can wrap the value with a QuoteValue like this:

yamlFile.addDefault("default", new QuoteValue<>("test", QuoteStyle.DOUBLE));

If you want to write all default strings with double quotes you can set your own configuration defaults with the setDefaults method, for instance you can use a YamlConfiguration instance for your defaults (instead of the default MemoryConfiguration), so you can use the set method for your defaults:

YamlConfiguration defaults = new YamlConfiguration();

defaults.options().quoteStyleDefaults().setQuoteStyle(String.class, QuoteStyle.DOUBLE);

defaults.set("default", "test"); // String quote style is now DOUBLE by default

defaults.set("plain", "This is plain quote style", QuoteStyle.PLAIN); // You can override the quote style for specific values

yamlFile.setDefaults(defaults);

Output:

default: "test"
plain: This is plain quote style

Of course you can also avoid setting the quoteStyleDefaults and use the set syntax providing the QuoteStyle for each default:

YamlConfiguration defaults = new YamlConfiguration();

defaults.set("quotes.custom", "This is double quote style", QuoteStyle.DOUBLE);

yamlFile.setDefaults(defaults);
quotes:
  custom: "This is double quote style"

from simple-yaml.

Carleslc avatar Carleslc commented on June 1, 2024

Note that quote styles of default values will only be applied the first time when the value does not exist in the file, because when the path already exists it is not a default value anymore, so if you want to preserve the quote style you can use the addDefault or setDefaults as usual like in my previous message and then a function to set the quote style of your desired values for already existing values, without changing their values:

private static void wrapValues(YamlFile yamlFile, QuoteStyle quoteStyle, String... paths) {
    for (String path : paths) {
        if (yamlFile.isSet(path)) {
            yamlFile.set(path, yamlFile.get(path), quoteStyle);
        }
    }
}
wrapValues(yamlFile, QuoteStyle.DOUBLE, "default");

Or you can use a custom method to set defaults, probably this is what you mean by a workaround:

private static <T> void setDefault(YamlFile yamlFile, String path, T value, QuoteStyle quoteStyle) {
    yamlFile.set(path, yamlFile.isSet(path) ? yamlFile.get(path) : value, quoteStyle);
}
setDefault(yamlFile, "default", "test", QuoteStyle.DOUBLE);

Instead of using static functions you could also extend YamlFile with your own methods.

from simple-yaml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.