01: package com.bm.utils; 02: 03: /** 04: * Defines the access type. 05: * @author Daniel Wiese 06: * 07: */ 08: public enum AccessType { 09: 10: /** accestype field. **/ 11: FIELD, 12: 13: /** accestype method. **/ 14: METHOD 15: 16: }