added Type enum to GraphEntity

This commit is contained in:
Michael Hunger
2010-08-11 09:36:45 +02:00
parent 59bb022391
commit c70db8b7fa

View File

@@ -14,5 +14,6 @@ import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface GraphEntity {
public enum Type { NODE, RELATIONSHIP };
Type value() default Type.NODE;
}