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