io.github.avivcarmis.confEager.properties.ConfEagerPropertyDouble Maven / Gradle / Ivy
package io.github.avivcarmis.confEager.properties;
import io.github.avivcarmis.confEager.ConfEager;
import io.github.avivcarmis.confEager.properties.utils.ConfEagerPropertyPrimitive;
import io.github.avivcarmis.confEager.properties.utils.ConfEagerValueMapper;
/**
* Out of the box {@link io.github.avivcarmis.confEager.ConfEagerProperty}
* that maps {@link Double} values.
*/
public class ConfEagerPropertyDouble extends ConfEagerPropertyPrimitive {
public ConfEagerPropertyDouble(ConfEager.DefaultValue defaultValue, ConfEager.PropertyName propertyName) {
super(defaultValue, propertyName, ConfEagerValueMapper.DOUBLE_MAPPER);
}
public ConfEagerPropertyDouble(ConfEager.PropertyName propertyName, ConfEager.DefaultValue defaultValue) {
super(propertyName, defaultValue, ConfEagerValueMapper.DOUBLE_MAPPER);
}
public ConfEagerPropertyDouble(ConfEager.PropertyName propertyName) {
super(propertyName, ConfEagerValueMapper.DOUBLE_MAPPER);
}
public ConfEagerPropertyDouble(ConfEager.DefaultValue defaultValue) {
super(defaultValue, ConfEagerValueMapper.DOUBLE_MAPPER);
}
public ConfEagerPropertyDouble() {
super(ConfEagerValueMapper.DOUBLE_MAPPER);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy