org.openstreetmap.atlas.utilities.configuration.Configurable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlas Show documentation
Show all versions of atlas Show documentation
"Library to load OSM data into an Atlas format"
package org.openstreetmap.atlas.utilities.configuration;
import java.util.Optional;
/**
* Configurable wrapper
*
* @author brian_l_davis
*/
public interface Configurable
{
/**
* @param
* property type
* @return the current value
*/
V value();
/**
* @param
* property type
* @return Optional of the current value, wrapping {@code null}
*/
Optional valueOption();
}