aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/datatypes/NumericFieldValue.java
blob: 3a784cff73249951026fe0c19331f1d62e06f5d0 (plain) (blame)
1
2
3
4
5
6
7
8
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.datatypes;

public abstract class NumericFieldValue extends FieldValue {

    public abstract Number getNumber();

}