001package com.box.sdk; 002 003/** Enum to represent the JWT entity type for BoxDeveloperEditionAPIConnection. */ 004public enum DeveloperEditionEntityType { 005 006 /** Represents the entity type enterprise. */ 007 ENTERPRISE("enterprise"), 008 009 /** Represents the entity type user. */ 010 USER("user"); 011 012 private final String value; 013 014 /** @param value */ 015 DeveloperEditionEntityType(String value) { 016 this.value = value; 017 } 018 019 /** 020 * To get the string value for the enum type. 021 * 022 * @return The string value for the enum type 023 */ 024 @Override 025 public String toString() { 026 return this.value; 027 } 028}