view src/main/java/jp/ac/u_ryukyu/ie/cr/jungle/store/nodepath/PathType.java @ 316:a0529572fbcb

Path Convert magpack bug fix
author tatsuki
date Fri, 27 Jan 2017 01:09:43 +0900
parents 474728dcfdb8
children abd8e3cf9bfc
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.jungle.store.nodepath;

import org.msgpack.annotation.Message;

//enumで作るとmsgPackでイニシャライズ出来なかった
@Message
public class PathType {
    public static final int Default = 0;

    public static final int RedBlack = 1;

    public static final int RedBlackNode = 2;

    public static final int RedBlackAttribute = 3;
}