// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.vespa.flags; import java.util.List; /** * @author freva */ public class ListFlag extends FlagImpl, ListFlag> { public ListFlag(FlagId id, List defaultValue, FetchVector vector, FlagSerializer> serializer, FlagSource source) { super(id, defaultValue, vector, serializer, source, ListFlag::new); } @Override public ListFlag self() { return this; } public List value() { return boxedValue(); } }