aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/NumericDataType.java
blob: 828cf024045a3b894fae0563f7d81675e169a644 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document;

import com.yahoo.document.datatypes.FieldValue;
import com.yahoo.vespa.objects.Ids;

/**
 * @author Einar M R Rosenvinge
 */
public class NumericDataType extends PrimitiveDataType {

    // The global class identifier shared with C++.
    public static int classId = registerClass(Ids.document + 52, NumericDataType.class);
    /**
     * Creates a datatype
     *
     * @param name      the name of the type
     * @param code      the code (id) of the type
     * @param type      the field value used for this type
     */
    protected NumericDataType(java.lang.String name, int code, Class<? extends FieldValue> type, Factory factory) {
        super(name, code, type, factory);
    }

    @Override
    public NumericDataType clone() {
        return (NumericDataType) super.clone();
    }

}