aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/slime/Type.java
blob: 8314d5bb24ef9ea94b176e0f9833096d0e3f7399 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.slime;

/**
 * Enumeration of all possible Slime data types.
 */
public enum Type {

    NIX(0),
    BOOL(1),
    LONG(2),
    DOUBLE(3),
    STRING(4),
    DATA(5),
    ARRAY(6),
    OBJECT(7);

    public final byte ID;
    Type(int id) { this.ID = (byte)id; }

    private static final Type[] types = values();
    static Type asType(int id) { return types[id]; }

}