All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codepulsar.nils.adapter.snakeyaml.SnakeYamlAdapterConfig Maven / Gradle / Ivy

package com.codepulsar.nils.adapter.snakeyaml;

import static com.codepulsar.nils.core.util.ParameterCheck.NILS_CONFIG;
import static com.codepulsar.nils.core.util.ParameterCheck.notNull;

import com.codepulsar.nils.api.adapter.AdapterFactory;
import com.codepulsar.nils.core.adapter.config.BaseLocalizedResourceNilsConfig;

/**
 * Configuration for the {@link SnakeYamlAdapter} implementation.
 *
 * 

The default base file name is {@code nls/translation.yaml}. */ public class SnakeYamlAdapterConfig extends BaseLocalizedResourceNilsConfig { private SnakeYamlAdapterConfig(Module owner) { super(owner, ".yaml"); } @Override public Class> getFactoryClass() { return SnakeYamlAdapterFactory.class; } /** * Create a SnakeYamlAdapterConfig from a class as reference. * *

Note: The class will be used to resolve the module the class is located in. * * @param owner A Class * @return The created SnakeYamlAdapterConfig. */ public static SnakeYamlAdapterConfig init(Class owner) { notNull(owner, "owner", NILS_CONFIG); return new SnakeYamlAdapterConfig(owner.getModule()); } /** * Create a SnakeYamlAdapterConfig from an object as reference. * *

Note: The object will be used to resolve the module the object class is located in. * * @param owner An object * @return The created SnakeYamlAdapterConfig. */ public static SnakeYamlAdapterConfig init(Object owner) { notNull(owner, "owner", NILS_CONFIG); return init(owner.getClass()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy