public final T match()

in ffwd-client/src/main/java/com/spotify/ffwd/v1/Value.java [82:87]


    public final <T> T match(
        Function<? super Double, T> doubleFunction,
        Function<? super ByteString, T> distributionFunction,
        Function<? super Value, T> defaultFunction) {
      return distributionFunction.apply(getValue());
    }