Checkstyle and trailing spaces.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1083052 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ced4aa7699
commit
7fa56af132
|
@ -59,6 +59,7 @@ public class NumericEntityEscaper extends CodePointTranslator {
|
||||||
* <p>Constructs a <code>NumericEntityEscaper</code> below the specified value (exclusive). </p>
|
* <p>Constructs a <code>NumericEntityEscaper</code> below the specified value (exclusive). </p>
|
||||||
*
|
*
|
||||||
* @param codepoint below which to escape
|
* @param codepoint below which to escape
|
||||||
|
* @return the newly created {@code NumericEntityEscaper} instance
|
||||||
*/
|
*/
|
||||||
public static NumericEntityEscaper below(int codepoint) {
|
public static NumericEntityEscaper below(int codepoint) {
|
||||||
return outsideOf(codepoint, Integer.MAX_VALUE);
|
return outsideOf(codepoint, Integer.MAX_VALUE);
|
||||||
|
@ -68,6 +69,7 @@ public class NumericEntityEscaper extends CodePointTranslator {
|
||||||
* <p>Constructs a <code>NumericEntityEscaper</code> above the specified value (exclusive). </p>
|
* <p>Constructs a <code>NumericEntityEscaper</code> above the specified value (exclusive). </p>
|
||||||
*
|
*
|
||||||
* @param codepoint above which to escape
|
* @param codepoint above which to escape
|
||||||
|
* @return the newly created {@code NumericEntityEscaper} instance
|
||||||
*/
|
*/
|
||||||
public static NumericEntityEscaper above(int codepoint) {
|
public static NumericEntityEscaper above(int codepoint) {
|
||||||
return outsideOf(0, codepoint);
|
return outsideOf(0, codepoint);
|
||||||
|
@ -78,6 +80,7 @@ public class NumericEntityEscaper extends CodePointTranslator {
|
||||||
*
|
*
|
||||||
* @param codepointLow above which to escape
|
* @param codepointLow above which to escape
|
||||||
* @param codepointHigh below which to escape
|
* @param codepointHigh below which to escape
|
||||||
|
* @return the newly created {@code NumericEntityEscaper} instance
|
||||||
*/
|
*/
|
||||||
public static NumericEntityEscaper between(int codepointLow, int codepointHigh) {
|
public static NumericEntityEscaper between(int codepointLow, int codepointHigh) {
|
||||||
return new NumericEntityEscaper(codepointLow, codepointHigh, true);
|
return new NumericEntityEscaper(codepointLow, codepointHigh, true);
|
||||||
|
@ -88,6 +91,7 @@ public class NumericEntityEscaper extends CodePointTranslator {
|
||||||
*
|
*
|
||||||
* @param codepointLow below which to escape
|
* @param codepointLow below which to escape
|
||||||
* @param codepointHigh above which to escape
|
* @param codepointHigh above which to escape
|
||||||
|
* @return the newly created {@code NumericEntityEscaper} instance
|
||||||
*/
|
*/
|
||||||
public static NumericEntityEscaper outsideOf(int codepointLow, int codepointHigh) {
|
public static NumericEntityEscaper outsideOf(int codepointLow, int codepointHigh) {
|
||||||
return new NumericEntityEscaper(codepointLow, codepointHigh, false);
|
return new NumericEntityEscaper(codepointLow, codepointHigh, false);
|
||||||
|
|
Loading…
Reference in New Issue