aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/datatypes/NumericFieldValue.java
blob: c0dde28aa0482a1f7d129036df4b06c2b775f7c6 (plain) (blame)
1
2
3
4
5
6
7
8
// Copyright Yahoo. 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();

}