
com.launchdarkly.sdk.server.EvalResultAndFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-java-server-sdk Show documentation
Show all versions of launchdarkly-java-server-sdk Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.sdk.server;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
class EvalResultAndFlag {
private final EvalResult result;
private final DataModel.FeatureFlag flag;
EvalResultAndFlag(@NotNull EvalResult result, @Nullable DataModel.FeatureFlag flag) {
this.result = result;
this.flag = flag;
}
EvalResult getResult() {
return result;
}
DataModel.FeatureFlag getFlag() {
return flag;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy