| File | Line |
|---|
| org/apache/commons/lang3/builder/CompareToBuilder.java | 417 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 468 |
if (lhs instanceof long[]) {
append((long[]) lhs, (long[]) rhs);
} else if (lhs instanceof int[]) {
append((int[]) lhs, (int[]) rhs);
} else if (lhs instanceof short[]) {
append((short[]) lhs, (short[]) rhs);
} else if (lhs instanceof char[]) {
append((char[]) lhs, (char[]) rhs);
} else if (lhs instanceof byte[]) {
append((byte[]) lhs, (byte[]) rhs);
} else if (lhs instanceof double[]) {
append((double[]) lhs, (double[]) rhs);
} else if (lhs instanceof float[]) {
append((float[]) lhs, (float[]) rhs);
} else if (lhs instanceof boolean[]) {
append((boolean[]) lhs, (boolean[]) rhs);
} else {
// not an array of primitives
// throws a ClassCastException if rhs is not an array
append((Object[]) lhs, (Object[]) rhs, comparator); |
| File | Line |
|---|
| org/apache/commons/lang3/exception/ContextedException.java | 187 |
| org/apache/commons/lang3/exception/ContextedRuntimeException.java | 187 |
public ContextedException setContextValue(final String label, final Object value) {
exceptionContext.setContextValue(label, value);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public List<Object> getContextValues(final String label) {
return this.exceptionContext.getContextValues(label);
}
/**
* {@inheritDoc}
*/
@Override
public Object getFirstContextValue(final String label) {
return this.exceptionContext.getFirstContextValue(label);
}
/**
* {@inheritDoc}
*/
@Override
public List<Pair<String, Object>> getContextEntries() {
return this.exceptionContext.getContextEntries();
}
/**
* {@inheritDoc}
*/
@Override
public Set<String> getContextLabels() {
return exceptionContext.getContextLabels();
}
/**
* Provides the message explaining the exception, including the contextual data.
*
* @see java.lang.Throwable#getMessage()
* @return the message, never null
*/
@Override
public String getMessage(){
return getFormattedExceptionMessage(super.getMessage());
}
/**
* Provides the message explaining the exception without the contextual data.
*
* @see java.lang.Throwable#getMessage()
* @return the message
* @since 3.0.1
*/
public String getRawMessage() {
return super.getMessage();
}
/**
* {@inheritDoc}
*/
@Override
public String getFormattedExceptionMessage(final String baseMessage) {
return exceptionContext.getFormattedExceptionMessage(baseMessage);
}
} |
| File | Line |
|---|
| org/apache/commons/lang3/builder/CompareToBuilder.java | 687 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 727 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 767 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 807 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 847 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 887 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 927 |
public CompareToBuilder append(final long[] lhs, final long[] rhs) {
if (comparison != 0) {
return this;
}
if (lhs == rhs) {
return this;
}
if (lhs == null) {
comparison = -1;
return this;
}
if (rhs == null) {
comparison = +1;
return this;
}
if (lhs.length != rhs.length) {
comparison = (lhs.length < rhs.length) ? -1 : +1;
return this;
}
for (int i = 0; i < lhs.length && comparison == 0; i++) {
append(lhs[i], rhs[i]);
}
return this;
}
/**
* <p>Appends to the <code>builder</code> the deep comparison of
* two <code>int</code> arrays.</p>
*
* <ol>
* <li>Check if arrays are the same using <code>==</code></li>
* <li>Check if for <code>null</code>, <code>null</code> is less than non-<code>null</code></li>
* <li>Check array length, a shorter length array is less than a longer length array</li>
* <li>Check array contents element by element using {@link #append(int, int)}</li>
* </ol>
*
* @param lhs left-hand array
* @param rhs right-hand array
* @return this - used to chain append calls
*/
public CompareToBuilder append(final int[] lhs, final int[] rhs) { |
| File | Line |
|---|
| org/apache/commons/lang3/builder/CompareToBuilder.java | 687 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 727 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 767 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 807 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 847 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 887 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 927 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 967 |
public CompareToBuilder append(final long[] lhs, final long[] rhs) {
if (comparison != 0) {
return this;
}
if (lhs == rhs) {
return this;
}
if (lhs == null) {
comparison = -1;
return this;
}
if (rhs == null) {
comparison = +1;
return this;
}
if (lhs.length != rhs.length) {
comparison = (lhs.length < rhs.length) ? -1 : +1;
return this;
}
for (int i = 0; i < lhs.length && comparison == 0; i++) {
append(lhs[i], rhs[i]);
}
return this;
}
/**
* <p>Appends to the <code>builder</code> the deep comparison of
* two <code>int</code> arrays.</p>
*
* <ol>
* <li>Check if arrays are the same using <code>==</code></li>
* <li>Check if for <code>null</code>, <code>null</code> is less than non-<code>null</code></li>
* <li>Check array length, a shorter length array is less than a longer length array</li>
* <li>Check array contents element by element using {@link #append(int, int)}</li>
* </ol>
*
* @param lhs left-hand array
* @param rhs right-hand array
* @return this - used to chain append calls
*/
public CompareToBuilder append(final int[] lhs, final int[] rhs) { |
| File | Line |
|---|
| org/apache/commons/lang3/text/StrBuilder.java | 533 |
| org/apache/commons/lang3/text/StrBuilder.java | 595 |
| org/apache/commons/lang3/text/StrBuilder.java | 646 |
| org/apache/commons/lang3/text/StrBuilder.java | 695 |
public StrBuilder append(final String str, final int startIndex, final int length) {
if (str == null) {
return appendNull();
}
if (startIndex < 0 || startIndex > str.length()) {
throw new StringIndexOutOfBoundsException("startIndex must be valid");
}
if (length < 0 || (startIndex + length) > str.length()) {
throw new StringIndexOutOfBoundsException("length must be valid");
}
if (length > 0) {
final int len = length();
ensureCapacity(len + length);
str.getChars(startIndex, startIndex + length, buffer, len);
size += length;
}
return this;
}
/**
* Calls {@link String#format(String, Object...)} and appends the result.
*
* @param format the format string
* @param objs the objects to use in the format string
* @return {@code this} to enable chaining
* @see String#format(String, Object...)
* @since 3.2
*/
public StrBuilder append(final String format, final Object... objs) { |
| File | Line |
|---|
| org/apache/commons/lang3/builder/CompareToBuilder.java | 315 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 400 |
for (int i = 0; i < fields.length && builder.comparison == 0; i++) {
final Field f = fields[i];
if (!ArrayUtils.contains(excludeFields, f.getName())
&& (f.getName().indexOf('$') == -1)
&& (useTransients || !Modifier.isTransient(f.getModifiers()))
&& (!Modifier.isStatic(f.getModifiers()))) {
try {
builder.append(f.get(lhs), f.get(rhs));
} catch (final IllegalAccessException e) {
// This can't happen. Would get a Security exception instead.
// Throw a runtime exception in case the impossible happens.
throw new InternalError("Unexpected IllegalAccessException");
}
}
}
} |
| File | Line |
|---|
| org/apache/commons/lang3/builder/CompareToBuilder.java | 647 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 687 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 727 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 767 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 807 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 847 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 887 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 927 |
| org/apache/commons/lang3/builder/CompareToBuilder.java | 967 |
public CompareToBuilder append(final Object[] lhs, final Object[] rhs, final Comparator<?> comparator) {
if (comparison != 0) {
return this;
}
if (lhs == rhs) {
return this;
}
if (lhs == null) {
comparison = -1;
return this;
}
if (rhs == null) {
comparison = +1;
return this;
}
if (lhs.length != rhs.length) {
comparison = (lhs.length < rhs.length) ? -1 : +1;
return this;
}
for (int i = 0; i < lhs.length && comparison == 0; i++) {
append(lhs[i], rhs[i], comparator); |
| File | Line |
|---|
| org/apache/commons/lang3/StringUtils.java | 3474 |
| org/apache/commons/lang3/StringUtils.java | 3523 |
| org/apache/commons/lang3/StringUtils.java | 3572 |
| org/apache/commons/lang3/StringUtils.java | 3621 |
| org/apache/commons/lang3/StringUtils.java | 3670 |
| org/apache/commons/lang3/StringUtils.java | 3719 |
| org/apache/commons/lang3/StringUtils.java | 3768 |
public static String join(final long[] array, final char separator, final int startIndex, final int endIndex) {
if (array == null) {
return null;
}
final int noOfItems = endIndex - startIndex;
if (noOfItems <= 0) {
return EMPTY;
}
final StringBuilder buf = new StringBuilder(noOfItems * 16);
for (int i = startIndex; i < endIndex; i++) {
if (i > startIndex) {
buf.append(separator);
}
buf.append(array[i]);
}
return buf.toString();
}
/**
* <p>
* Joins the elements of the provided array into a single String containing the provided list of elements.
* </p>
*
* <p>
* No delimiter is added before or after the list. Null objects or empty strings within the array are represented
* by empty strings.
* </p>
*
* <pre>
* StringUtils.join(null, *) = null
* StringUtils.join([], *) = ""
* StringUtils.join([null], *) = ""
* StringUtils.join([1, 2, 3], ';') = "1;2;3"
* StringUtils.join([1, 2, 3], null) = "123"
* </pre>
*
* @param array
* the array of values to join together, may be null
* @param separator
* the separator character to use
* @param startIndex
* the first index to start joining from. It is an error to pass in an end index past the end of the
* array
* @param endIndex
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
* the array
* @return the joined String, {@code null} if null array input
* @since 3.2
*/
public static String join(final int[] array, final char separator, final int startIndex, final int endIndex) { |
| File | Line |
|---|
| org/apache/commons/lang3/Conversion.java | 1433 |
| org/apache/commons/lang3/Conversion.java | 1473 |
"(nHexs-1)*4+srcPos is greather or equal to than 32");
}
final StringBuilder sb = new StringBuilder(dstInit);
int shift = 0;
int append = sb.length();
for (int i = 0; i < nHexs; i++ ) {
shift = i * 4 + srcPos;
final int bits = 0xF & (src >> shift);
if (dstPos + i == append) {
++append;
sb.append(intToHexDigit(bits));
} else {
sb.setCharAt(dstPos + i, intToHexDigit(bits));
}
}
return sb.toString();
}
/**
* <p>
* Converts a short into an array of Char using the default (little endian, Lsb0) byte and
* bit ordering.
* </p>
*
* @param src the short to convert
* @param srcPos the position in {@code src}, in bits, from where to start the conversion
* @param dstInit the initial value for the result String
* @param dstPos the position in {@code dst} where to copy the result
* @param nHexs the number of Chars to copy to {@code dst}, must be smaller or equal to the
* width of the input (from srcPos to msb)
* @return {@code dst}
* @throws IllegalArgumentException if {@code (nHexs-1)*4+srcPos >= 16}
* @throws StringIndexOutOfBoundsException if {@code dst.init.length() < dstPos}
*/
public static String shortToHex(final short src, final int srcPos, final String dstInit, final int dstPos, final int nHexs) { |
| File | Line |
|---|
| org/apache/commons/lang3/builder/EqualsBuilder.java | 635 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 666 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 697 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 728 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 759 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 790 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 821 |
| org/apache/commons/lang3/builder/EqualsBuilder.java | 852 |
public EqualsBuilder append(final Object[] lhs, final Object[] rhs) {
if (isEquals == false) {
return this;
}
if (lhs == rhs) {
return this;
}
if (lhs == null || rhs == null) {
this.setEquals(false);
return this;
}
if (lhs.length != rhs.length) {
this.setEquals(false);
return this;
}
for (int i = 0; i < lhs.length && isEquals; ++i) {
append(lhs[i], rhs[i]);
}
return this;
}
/**
* <p>Deep comparison of array of <code>long</code>. Length and all
* values are compared.</p>
*
* <p>The method {@link #append(long, long)} is used.</p>
*
* @param lhs the left hand <code>long[]</code>
* @param rhs the right hand <code>long[]</code>
* @return EqualsBuilder - used to chain calls.
*/
public EqualsBuilder append(final long[] lhs, final long[] rhs) { |
| File | Line |
|---|
| org/apache/commons/lang3/Conversion.java | 1433 |
| org/apache/commons/lang3/Conversion.java | 1473 |
| org/apache/commons/lang3/Conversion.java | 1513 |
"(nHexs-1)*4+srcPos is greather or equal to than 32");
}
final StringBuilder sb = new StringBuilder(dstInit);
int shift = 0;
int append = sb.length();
for (int i = 0; i < nHexs; i++ ) {
shift = i * 4 + srcPos;
final int bits = 0xF & (src >> shift);
if (dstPos + i == append) {
++append;
sb.append(intToHexDigit(bits));
} else {
sb.setCharAt(dstPos + i, intToHexDigit(bits));
}
}
return sb.toString();
}
/**
* <p>
* Converts a short into an array of Char using the default (little endian, Lsb0) byte and
* bit ordering.
* </p>
*
* @param src the short to convert
* @param srcPos the position in {@code src}, in bits, from where to start the conversion
* @param dstInit the initial value for the result String
* @param dstPos the position in {@code dst} where to copy the result
* @param nHexs the number of Chars to copy to {@code dst}, must be smaller or equal to the
* width of the input (from srcPos to msb)
* @return {@code dst}
* @throws IllegalArgumentException if {@code (nHexs-1)*4+srcPos >= 16}
* @throws StringIndexOutOfBoundsException if {@code dst.init.length() < dstPos}
*/
public static String shortToHex(final short src, final int srcPos, final String dstInit, final int dstPos, final int nHexs) { |