-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Javadoc generation on Java 11 (#28)
- Loading branch information
Showing
5 changed files
with
24 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,15 +35,15 @@ | |
* @author Andres Almiray <a href="mailto:[email protected]">[email protected]</a> | ||
*/ | ||
public abstract class JavaIdentifierTransformer { | ||
/** CamelCase transformer 'camel case' => 'camelCase' */ | ||
/** CamelCase transformer 'camel case' =gt; 'camelCase' */ | ||
public static final JavaIdentifierTransformer CAMEL_CASE = new CamelCaseJavaIdentifierTransformer(); | ||
/** Noop transformer '@invalid' => '@invalid' */ | ||
/** Noop transformer '@invalid' => '@invalid' */ | ||
public static final JavaIdentifierTransformer NOOP = new NoopJavaIdentifierTransformer(); | ||
/** Strict transformer '@invalid' => JSONException */ | ||
/** Strict transformer '@invalid' => JSONException */ | ||
public static final JavaIdentifierTransformer STRICT = new StrictJavaIdentifierTransformer(); | ||
/** Underscore transformer 'under score' => 'under_score' */ | ||
/** Underscore transformer 'under score' => 'under_score' */ | ||
public static final JavaIdentifierTransformer UNDERSCORE = new UnderscoreJavaIdentifierTransformer(); | ||
/** Whitespace transformer 'white space' => 'whitespace' */ | ||
/** Whitespace transformer 'white space' => 'whitespace' */ | ||
public static final JavaIdentifierTransformer WHITESPACE = new WhiteSpaceJavaIdentifierTransformer(); | ||
|
||
public abstract String transformToJavaIdentifier(String str); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
* Defines a custom setter to be used when setting object values.<br> | ||
* Specify with JsonConfig.setJsonPropertySetter(). | ||
* | ||
* @author Gino Miceli <a href="mailto:[email protected]">[email protected]></a> | ||
* @author Gino Miceli <a href="mailto:[email protected]">[email protected]</a> | ||
* @author Andres Almiray <a href="mailto:[email protected]">[email protected]</a> | ||
*/ | ||
public abstract class PropertySetStrategy { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters