summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/slime/Type.java
blob: 5c5524d8b88e41b1cfb6d218953330079435abe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.slime;

/**
 * Enumeration of all possibly 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;
    private Type(int id) { this.ID = (byte)id; }

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