aboutsummaryrefslogtreecommitdiffstats
path: root/flags/src/main/java/com/yahoo/vespa/flags/Deserializer.java
blob: 3e2b7e0f84b995340a0d13fefcd33873c1f584ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.flags;

/**
 * @author hakonhall
 */
@FunctionalInterface
public interface Deserializer<T> {
    T deserialize(RawFlag rawFlag);
}