mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-27 00:00:49 -04:00
Compare commits
4 Commits
98df35449a
...
bb1138762a
| Author | SHA1 | Date | |
|---|---|---|---|
| bb1138762a | |||
| 6a732ec99d | |||
| c798c76ddd | |||
| 23d5e52a53 |
@@ -20,6 +20,7 @@ and artifactId "json". For example:
|
|||||||
20190722 Recent commits
|
20190722 Recent commits
|
||||||
|
|
||||||
20180813 POM change to include Automatic-Module-Name (#431)
|
20180813 POM change to include Automatic-Module-Name (#431)
|
||||||
|
JSONObject(Map) now throws an exception if any of a map keys are null (#405)
|
||||||
|
|
||||||
20180130 Recent commits
|
20180130 Recent commits
|
||||||
|
|
||||||
|
|||||||
@@ -11,13 +11,13 @@ import java.lang.annotation.Documented;
|
|||||||
import java.lang.annotation.Retention;
|
import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
@Documented
|
|
||||||
@Retention(RUNTIME)
|
|
||||||
@Target({METHOD})
|
|
||||||
/**
|
/**
|
||||||
* Use this annotation on a getter method to override the Bean name
|
* Use this annotation on a getter method to override the Bean name
|
||||||
* parser for Bean -> JSONObject mapping. If this annotation is
|
* parser for Bean -> JSONObject mapping. If this annotation is
|
||||||
* present at any level in the class hierarchy, then the method will
|
* present at any level in the class hierarchy, then the method will
|
||||||
* not be serialized from the bean into the JSONObject.
|
* not be serialized from the bean into the JSONObject.
|
||||||
*/
|
*/
|
||||||
|
@Documented
|
||||||
|
@Retention(RUNTIME)
|
||||||
|
@Target({METHOD})
|
||||||
public @interface JSONPropertyIgnore { }
|
public @interface JSONPropertyIgnore { }
|
||||||
|
|||||||
@@ -11,14 +11,14 @@ import java.lang.annotation.Documented;
|
|||||||
import java.lang.annotation.Retention;
|
import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
@Documented
|
|
||||||
@Retention(RUNTIME)
|
|
||||||
@Target({METHOD})
|
|
||||||
/**
|
/**
|
||||||
* Use this annotation on a getter method to override the Bean name
|
* Use this annotation on a getter method to override the Bean name
|
||||||
* parser for Bean -> JSONObject mapping. A value set to empty string <code>""</code>
|
* parser for Bean -> JSONObject mapping. A value set to empty string <code>""</code>
|
||||||
* will have the Bean parser fall back to the default field name processing.
|
* will have the Bean parser fall back to the default field name processing.
|
||||||
*/
|
*/
|
||||||
|
@Documented
|
||||||
|
@Retention(RUNTIME)
|
||||||
|
@Target({METHOD})
|
||||||
public @interface JSONPropertyName {
|
public @interface JSONPropertyName {
|
||||||
/**
|
/**
|
||||||
* @return The name of the property as to be used in the JSON Object.
|
* @return The name of the property as to be used in the JSON Object.
|
||||||
|
|||||||
Reference in New Issue
Block a user