All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.featurehub.client.Applied Maven / Gradle / Ivy

package io.featurehub.client;

public class Applied {
  private final boolean matched;
  private final Object value;

  public Applied(boolean matched, Object value) {
    this.matched = matched;
    this.value = value;
  }

  public boolean isMatched() {
    return matched;
  }

  public Object getValue() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy