Javadoc
This commit is contained in:
parent
7666870539
commit
3f6d449f51
|
@ -302,7 +302,7 @@ public enum JavaVersion {
|
|||
private final String name;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* @param value the float value
|
||||
* @param name the standard name, not null
|
||||
|
|
|
@ -80,7 +80,7 @@ public class SerializationUtils {
|
|||
private final ClassLoader classLoader;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
* @param in The {@link InputStream}.
|
||||
* @param classLoader classloader to use
|
||||
* @throws IOException if an I/O error occurs while reading stream header.
|
||||
|
|
|
@ -1248,7 +1248,7 @@ public class Validate {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructor. This class should not normally be instantiated.
|
||||
* Constructs a new instance. This class should not normally be instantiated.
|
||||
*/
|
||||
public Validate() {
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@ public class MultilineRecursiveToStringStyle extends RecursiveToStringStyle {
|
|||
private int spaces = 2;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*/
|
||||
public MultilineRecursiveToStringStyle() {
|
||||
resetIndent();
|
||||
|
|
|
@ -60,7 +60,7 @@ public class RecursiveToStringStyle extends ToStringStyle {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*/
|
||||
public RecursiveToStringStyle() {
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ public class StandardToStringStyle extends ToStringStyle {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*/
|
||||
public StandardToStringStyle() {
|
||||
}
|
||||
|
|
|
@ -84,7 +84,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
|
@ -120,7 +120,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private static final String FIELD_NAME_QUOTE = "\"";
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* <p>
|
||||
* Use the static constant rather than instantiating.
|
||||
|
@ -440,7 +440,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
|
@ -474,7 +474,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
|
@ -506,7 +506,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
|
@ -537,7 +537,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
|
@ -568,7 +568,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*
|
||||
* <p>Use the static constant rather than instantiating.</p>
|
||||
*/
|
||||
|
@ -864,7 +864,7 @@ public abstract class ToStringStyle implements Serializable {
|
|||
private String summaryObjectEndText = ">";
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*/
|
||||
protected ToStringStyle() {
|
||||
}
|
||||
|
|
|
@ -149,7 +149,7 @@ public abstract class StrLookup<V> {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*/
|
||||
protected StrLookup() {
|
||||
}
|
||||
|
|
|
@ -374,7 +374,7 @@ public abstract class StrMatcher {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*/
|
||||
protected StrMatcher() {
|
||||
}
|
||||
|
|
|
@ -233,7 +233,7 @@ public class StopWatch {
|
|||
private long stopTimeNanos;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* Constructs a new instance.
|
||||
*/
|
||||
public StopWatch() {
|
||||
this(null);
|
||||
|
|
Loading…
Reference in New Issue