Java javax.xml.bind.annotation XmlAccessType fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.bind.annotation XmlAccessType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.bind.annotation XmlAccessType.

The text is from its open source code.

Field

XmlAccessTypePROPERTY
Every getter/setter pair in a JAXB-bound class will be automatically bound to XML, unless annotated by XmlTransient .
XmlAccessTypeFIELD
Every non static, non transient field in a JAXB-bound class will be automatically bound to XML, unless annotated by XmlTransient .
XmlAccessTypePUBLIC_MEMBER
Every public getter/setter pair and every public field will be automatically bound to XML, unless annotated by XmlTransient .
XmlAccessTypeNONE
None of the fields or properties is bound to XML unless they are specifically annotated with some of the JAXB annotations.