net.minidev.json.annotate
Annotation Type JsonIgnore
@Target(value={METHOD,CONSTRUCTOR,FIELD})
@Retention(value=RUNTIME)
public @interface JsonIgnore
block access to a field or to a getter or to a setter.
If field and getter are annotate with @JsonIgnore the field will be Writable
only
If field and setter are annotate with @JsonIgnore the field will be Readable
only
If getter and setter are annotate with @JsonIgnore the field will be
Read/Write using field if the field is public (default )
- Author:
- uriel
Optional Element Summary |
boolean |
value
|
value
public abstract boolean value
- Default:
- true
Copyright © 2012 Chemouni Uriel. All Rights Reserved.