com.launchdarkly.client.Target Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-client Show documentation
Show all versions of launchdarkly-client Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.client;
import java.util.List;
class Target {
private List values;
private int variation;
// We need this so Gson doesn't complain in certain java environments that restrict unsafe allocation
Target() {}
Target(List values, int variation) {
this.values = values;
this.variation = variation;
}
List getValues() {
return values;
}
int getVariation() {
return variation;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy