scray.common.properties.ConsistencyLevelProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scray-common Show documentation
Show all versions of scray-common Show documentation
scray artefacts shared between scala and java components
package scray.common.properties;
public class ConsistencyLevelProperty extends
EnumProperty {
public enum ConsistencyLevel {
ANY, ONE, TWO, THREE, QUORUM, ALL, LOCAL_QUORUM, EACH_QUORUM, SERIAL, LOCAL_SERIAL, LOCAL_ONE
}
public ConsistencyLevelProperty(String name, ConsistencyLevel defaultValue) {
super(name, defaultValue, ConsistencyLevel.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy