mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-11 20:45:05 +00:00
Add @since 2.0 tags based on http://www.apache.org/~bayard/commons-lang-2.0/Commons-Lang-1.0.1-to-2.0/missingSinces.txt
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137647 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
30c4f3890d
commit
22aeaddb5e
@ -63,8 +63,9 @@
|
|||||||
* @author <a href="bayard@generationjava.com">Henri Yandell</a>
|
* @author <a href="bayard@generationjava.com">Henri Yandell</a>
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author Phil Steitz
|
* @author Phil Steitz
|
||||||
|
* @author Gary Gregory
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id: CharSetUtils.java,v 1.24 2003/08/19 00:21:46 scolebourne Exp $
|
* @version $Id: CharSetUtils.java,v 1.25 2003/08/22 03:06:36 ggregory Exp $
|
||||||
*/
|
*/
|
||||||
public class CharSetUtils {
|
public class CharSetUtils {
|
||||||
|
|
||||||
@ -252,6 +253,7 @@ public static int count(String str, String[] set) {
|
|||||||
* @param str String to keep characters from, may be null
|
* @param str String to keep characters from, may be null
|
||||||
* @param set String set of characters to keep, may be null
|
* @param set String set of characters to keep, may be null
|
||||||
* @return modified String, <code>null</code> if null string input
|
* @return modified String, <code>null</code> if null string input
|
||||||
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
public static String keep(String str, String set) {
|
public static String keep(String str, String set) {
|
||||||
if (str == null) {
|
if (str == null) {
|
||||||
@ -279,6 +281,7 @@ public static String keep(String str, String set) {
|
|||||||
* @param str String to keep characters from, may be null
|
* @param str String to keep characters from, may be null
|
||||||
* @param set String[] set of characters to keep, may be null
|
* @param set String[] set of characters to keep, may be null
|
||||||
* @return modified String, <code>null</code> if null string input
|
* @return modified String, <code>null</code> if null string input
|
||||||
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
public static String keep(String str, String[] set) {
|
public static String keep(String str, String[] set) {
|
||||||
if (str == null) {
|
if (str == null) {
|
||||||
|
@ -64,11 +64,11 @@
|
|||||||
* @author Based on code from Lucene
|
* @author Based on code from Lucene
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
|
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
|
||||||
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
* @author Gary Gregory
|
||||||
* @author Michael Becke
|
* @author Michael Becke
|
||||||
* @author Tetsuya Kaneuchi
|
* @author Tetsuya Kaneuchi
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id: SystemUtils.java,v 1.21 2003/08/21 15:52:54 ggregory Exp $
|
* @version $Id: SystemUtils.java,v 1.22 2003/08/22 03:06:36 ggregory Exp $
|
||||||
*/
|
*/
|
||||||
public class SystemUtils {
|
public class SystemUtils {
|
||||||
|
|
||||||
@ -463,6 +463,8 @@ public class SystemUtils {
|
|||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <p>The field will return zero if {@link #JAVA_VERSION} is <code>null</code>.</p>
|
* <p>The field will return zero if {@link #JAVA_VERSION} is <code>null</code>.</p>
|
||||||
|
*
|
||||||
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
public static final float JAVA_VERSION_FLOAT = getJavaVersionAsFloat();
|
public static final float JAVA_VERSION_FLOAT = getJavaVersionAsFloat();
|
||||||
|
|
||||||
@ -476,6 +478,8 @@ public class SystemUtils {
|
|||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <p>The field will return zero if {@link #JAVA_VERSION} is <code>null</code>.</p>
|
* <p>The field will return zero if {@link #JAVA_VERSION} is <code>null</code>.</p>
|
||||||
|
*
|
||||||
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
public static final int JAVA_VERSION_INT = getJavaVersionAsInt();
|
public static final int JAVA_VERSION_INT = getJavaVersionAsInt();
|
||||||
|
|
||||||
|
@ -65,8 +65,9 @@
|
|||||||
*
|
*
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author Pete Gieser
|
* @author Pete Gieser
|
||||||
|
* @author Gary Gregory
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id: StandardToStringStyle.java,v 1.14 2003/08/21 15:52:54 ggregory Exp $
|
* @version $Id: StandardToStringStyle.java,v 1.15 2003/08/22 03:06:36 ggregory Exp $
|
||||||
*/
|
*/
|
||||||
public class StandardToStringStyle extends ToStringStyle {
|
public class StandardToStringStyle extends ToStringStyle {
|
||||||
|
|
||||||
@ -390,6 +391,7 @@ public void setFieldSeparator(String fieldSeparator) {
|
|||||||
* of each buffer.</p>
|
* of each buffer.</p>
|
||||||
*
|
*
|
||||||
* @return the fieldSeparatorAtStart flag
|
* @return the fieldSeparatorAtStart flag
|
||||||
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
public boolean isFieldSeparatorAtStart() {
|
public boolean isFieldSeparatorAtStart() {
|
||||||
return super.isFieldSeparatorAtStart();
|
return super.isFieldSeparatorAtStart();
|
||||||
|
@ -84,10 +84,10 @@
|
|||||||
* the array length.</p>
|
* the array length.</p>
|
||||||
*
|
*
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
|
* @author Gary Gregory
|
||||||
* @author Pete Gieser
|
* @author Pete Gieser
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
* @version $Id: ToStringStyle.java,v 1.25 2003/08/21 15:52:54 ggregory Exp $
|
* @version $Id: ToStringStyle.java,v 1.26 2003/08/22 03:06:36 ggregory Exp $
|
||||||
*/
|
*/
|
||||||
public abstract class ToStringStyle implements Serializable {
|
public abstract class ToStringStyle implements Serializable {
|
||||||
|
|
||||||
@ -209,6 +209,7 @@ protected ToStringStyle() {
|
|||||||
*
|
*
|
||||||
* @param buffer the <code>StringBuffer</code> to populate
|
* @param buffer the <code>StringBuffer</code> to populate
|
||||||
* @param superToString the <code>super.toString()</code>
|
* @param superToString the <code>super.toString()</code>
|
||||||
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
public void appendSuper(StringBuffer buffer, String superToString) {
|
public void appendSuper(StringBuffer buffer, String superToString) {
|
||||||
appendToString(buffer, superToString);
|
appendToString(buffer, superToString);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user