Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- append(char) - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Appends a single character to this Writer.
- append(CharSequence) - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Appends a character sequence to this Writer.
- append(CharSequence, int, int) - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Appends a portion of a character sequence to the
StringBuilder.
C
- Charsets - Class in com.alibaba.cloud.commons.io
-
The Charsets constants, copy from apache commons-io.
- close() - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Closing this writer has no effect.
- com.alibaba.cloud.commons.context.support - package com.alibaba.cloud.commons.context.support
- com.alibaba.cloud.commons.io - package com.alibaba.cloud.commons.io
- com.alibaba.cloud.commons.lang - package com.alibaba.cloud.commons.lang
- copy(InputStream, OutputStream, int) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Copies bytes from an
InputStreamto anOutputStreamusing an internal buffer of the given size. - copy(InputStream, Writer, Charset) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Copies bytes from an
InputStreamto chars on aWriterusing the specified character encoding. - copy(Reader, Writer) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Copies chars from a
Readerto aWriter. - copyLarge(InputStream, OutputStream) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Copies bytes from a large (over 2GB)
InputStreamto anOutputStream. - copyLarge(InputStream, OutputStream, byte[]) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Copies bytes from a large (over 2GB)
InputStreamto anOutputStream. - copyLarge(Reader, Writer) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Copies chars from a large (over 2GB)
Readerto aWriter. - copyLarge(Reader, Writer, char[]) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Copies chars from a large (over 2GB)
Readerto aWriter.
E
- EMPTY - Static variable in class com.alibaba.cloud.commons.lang.StringUtils
-
The empty String
"". - EMPTY_STRING_ARRAY - Static variable in class com.alibaba.cloud.commons.context.support.PropertySourcesUtils
-
Empty String array.
- EOF - Static variable in class com.alibaba.cloud.commons.io.IOUtils
-
Represents the end-of-file (or stream).
- equals(CharSequence, CharSequence) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Compares two CharSequences, returning
trueif they represent equal sequences of characters.
F
- FileUtils - Class in com.alibaba.cloud.commons.io
-
FileUtils.
- flush() - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Flushing this writer has no effect.
G
- getBuilder() - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Returns the underlying builder.
- getPropertyNames(PropertySource) - Static method in class com.alibaba.cloud.commons.context.support.PropertySourcesUtils
-
Get the property names as the array from the specified
PropertySourceinstance. - getSubProperties(Iterable<PropertySource<?>>, String) - Static method in class com.alibaba.cloud.commons.context.support.PropertySourcesUtils
-
Get Sub
Properties. - getSubProperties(ConfigurableEnvironment, String) - Static method in class com.alibaba.cloud.commons.context.support.PropertySourcesUtils
-
Get Sub
Properties. - getSubProperties(PropertySources, String) - Static method in class com.alibaba.cloud.commons.context.support.PropertySourcesUtils
-
Get prefixed
Properties. - getSubProperties(PropertySources, PropertyResolver, String) - Static method in class com.alibaba.cloud.commons.context.support.PropertySourcesUtils
-
Get prefixed
Properties.
I
- INDEX_NOT_FOUND - Static variable in class com.alibaba.cloud.commons.lang.StringUtils
-
Represents a failed index search.
- IOUtils - Class in com.alibaba.cloud.commons.io
-
The IOUtils.
- isBlank(CharSequence) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Checks if a CharSequence is whitespace, empty ("") or null.
- isEmpty(CharSequence) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Checks if a CharSequence is empty ("") or null.
- isNotBlank(CharSequence) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Checks if a CharSequence is not empty (""), not null and not whitespace only.
- isNotEmpty(CharSequence) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Checks if a CharSequence is not empty ("") and not null.
- ISO_8859_1 - Static variable in class com.alibaba.cloud.commons.io.Charsets
-
Deprecated.
N
- normalizePrefix(String) - Static method in class com.alibaba.cloud.commons.context.support.PropertySourcesUtils
-
Normalize the prefix.
O
- openInputStream(File) - Static method in class com.alibaba.cloud.commons.io.FileUtils
-
Opens a
FileInputStreamfor the specified file, providing better error messages than simply callingnew FileInputStream(file).
P
R
- readFileToString(File) - Static method in class com.alibaba.cloud.commons.io.FileUtils
-
Deprecated.2.5 use
FileUtils.readFileToString(File, String)instead (and specify the appropriate encoding) - readFileToString(File, String) - Static method in class com.alibaba.cloud.commons.io.FileUtils
-
Reads the contents of a file into a String.
- readFileToString(File, Charset) - Static method in class com.alibaba.cloud.commons.io.FileUtils
-
Reads the contents of a file into a String.
- regionMatches(CharSequence, boolean, int, CharSequence, int, int) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Green implementation of regionMatches.
- requiredCharsets() - Static method in class com.alibaba.cloud.commons.io.Charsets
-
Constructs a sorted map from canonical charset names to charset objects required of every implementation of the Java platform.
S
- StringBuilderWriter - Class in com.alibaba.cloud.commons.io
-
Copy from apache commons-io.
- StringBuilderWriter() - Constructor for class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Constructs a new
StringBuilderinstance with default capacity. - StringBuilderWriter(int) - Constructor for class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Constructs a new
StringBuilderinstance with the specified capacity. - StringBuilderWriter(StringBuilder) - Constructor for class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Constructs a new instance with the specified
StringBuilder. - StringUtils - Class in com.alibaba.cloud.commons.lang
-
StringUtils.
- substringAfter(String, String) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Gets the substring after the first occurrence of a separator.
- substringBetween(String, String) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Gets the String that is nested in between two instances of the same String.
- substringBetween(String, String, String) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Gets the String that is nested in between two Strings.
T
- toCharset(String) - Static method in class com.alibaba.cloud.commons.io.Charsets
-
Returns a Charset for the named charset.
- toCharset(Charset) - Static method in class com.alibaba.cloud.commons.io.Charsets
-
Returns the given Charset or the default Charset if the given Charset is null.
- toString() - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Returns
StringBuilder.toString(). - toString(InputStream, Charset) - Static method in class com.alibaba.cloud.commons.io.IOUtils
-
Gets the contents of an
InputStreamas a String using the specified character encoding. - trim(String) - Static method in class com.alibaba.cloud.commons.lang.StringUtils
-
Removes control characters (char <= 32) from both ends of this String, handling
nullby returningnull.
U
- US_ASCII - Static variable in class com.alibaba.cloud.commons.io.Charsets
-
Deprecated.Use Java 7's
StandardCharsets - UTF_16 - Static variable in class com.alibaba.cloud.commons.io.Charsets
-
Deprecated.Use Java 7's
StandardCharsets - UTF_16BE - Static variable in class com.alibaba.cloud.commons.io.Charsets
-
Deprecated.Use Java 7's
StandardCharsets - UTF_16LE - Static variable in class com.alibaba.cloud.commons.io.Charsets
-
Deprecated.Use Java 7's
StandardCharsets - UTF_8 - Static variable in class com.alibaba.cloud.commons.io.Charsets
-
Deprecated.Use Java 7's
StandardCharsets
W
- write(char[], int, int) - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Writes a portion of a character array to the
StringBuilder. - write(String) - Method in class com.alibaba.cloud.commons.io.StringBuilderWriter
-
Writes a String to the
StringBuilder.
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
StandardCharsets