package cy.agorise.graphenej; /** * Enum-type used to specify the different roles of an authority. * * @see Authority */ public enum AuthorityType { OWNER, ACTIVE, MEMO; @Override public String toString() { return String.format("%d", this.ordinal()); } }