
com.launchdarkly.client.Target Maven / Gradle / Ivy
package com.launchdarkly.client;
import java.util.Set;
class Target {
private Set values;
private int variation;
// We need this so Gson doesn't complain in certain java environments that restrict unsafe allocation
Target() {}
Target(Set values, int variation) {
this.values = values;
this.variation = variation;
}
Set getValues() {
return values;
}
int getVariation() {
return variation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy