A B C D E F G H I J K L M N O P R S T U V W Z
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- accept(byte[], int) - Method in interface me.saro.commons.function.StreamReadConsumer
-
read InputStream
- accept(T) - Method in interface me.saro.commons.function.ThrowableConsumer
- accept(T, U) - Method in interface me.saro.commons.function.ThrowableBiConsumer
- accept(T, U, V) - Method in interface me.saro.commons.function.ThrowableTriConsumer
- addDates(int) - Method in class me.saro.commons.DateFormat
-
add Date
- addHours(int) - Method in class me.saro.commons.DateFormat
-
add Hours
- addMilliseconds(int) - Method in class me.saro.commons.DateFormat
-
add Milliseconds
- addMinutes(int) - Method in class me.saro.commons.DateFormat
-
add Minutes
- addMonth(int) - Method in class me.saro.commons.DateFormat
-
add Month
logic :
same calendar.add(Calendar.MONTH, month); - addUrlParameter(String, String) - Method in class me.saro.commons.web.BasicWeb
-
add url parameter
always append url parameter even post method
is not body write - addUrlParameter(String, String) - Method in interface me.saro.commons.web.Web
-
add url parameter
always append url parameter even post method
is not body write - addYear(int) - Method in class me.saro.commons.DateFormat
-
add Year
logic :
same calendar.add(Calendar.YEAR, year); - align() - Method in annotation type me.saro.commons.bytes.annotations.FixedText
-
align
- apply(T) - Method in interface me.saro.commons.function.ThrowableFunction
- apply(T, U) - Method in interface me.saro.commons.function.ThrowableBiFunction
- apply(T, U, V) - Method in interface me.saro.commons.function.ThrowableTriFunction
- arrayLength() - Method in annotation type me.saro.commons.bytes.annotations.FixedBinary
-
array length use in array data
- asList(T...) - Static method in class me.saro.commons.Converter
-
asList
this asList different Arrays.asList
this method List is ArrayList
can editable list - attributesFilter(ThrowablePredicate<BasicFileAttributes>) - Static method in class me.saro.commons.Files
-
convert BasicFileAttributes to FileFilter
ex) // delete created before 24 hour file in /testpath
long before24hour = DateFormat.now().addHours(-24).getTimeInMillis();
Files.streamFiles("/testpath")
.filter(Files.attributesFilter(attr -> attr.creationTime().toMillis() < before24hour))
.forEach(File::delete); - autoSizeColumn() - Method in class me.saro.commons.excel.BasicExcel
-
autoSizeColumn
- autoSizeColumn() - Method in interface me.saro.commons.excel.Excel
- autoSizeColumn(int) - Method in class me.saro.commons.excel.BasicExcel
-
autoSizeColumn
- autoSizeColumn(int) - Method in interface me.saro.commons.excel.Excel
B
- BasicExcel - Class in me.saro.commons.excel
-
excel
- BasicExcel(Workbook) - Constructor for class me.saro.commons.excel.BasicExcel
- BasicWeb - Class in me.saro.commons.web
-
Web Client Builder
- BasicWeb(String, String) - Constructor for class me.saro.commons.web.BasicWeb
-
private constructor
- bind(OutputStream) - Method in class me.saro.commons.bytes.ByteData
-
bind all data to output stream
- bind(OutputStream, int) - Method in class me.saro.commons.bytes.ByteData
-
bind all data to output stream
- bindBytes(byte[], int, T) - Method in class me.saro.commons.bytes.FixedDataFormat
-
to bytes and bind byte[]
- bindBytes(OutputStream, T) - Method in class me.saro.commons.bytes.FixedDataFormat
-
to bytes and bind OutputStream
- blank(String) - Static method in class me.saro.commons.Utils
-
is blank
- bvl(String...) - Static method in class me.saro.commons.Utils
-
Blank Value Logic
- ByteData - Class in me.saro.commons.bytes
-
ByteData
thread-non-safe :
Be sure to use it in a single thread. - Bytes - Class in me.saro.commons.bytes
-
bytes
C
- cd(String) - Method in interface me.saro.commons.ftp.FTP
-
change directory
same method path(), cd() - charset() - Method in annotation type me.saro.commons.bytes.annotations.FixedData
-
charset
- charset() - Method in annotation type me.saro.commons.bytes.annotations.FixedText
-
charset
support only String - clone() - Method in class me.saro.commons.DateFormat
-
clone
- clone() - Method in class me.saro.commons.json.JsonReader
-
clone
- clone(Map<K, V>) - Static method in class me.saro.commons.Maps
-
clone map
it is not deep copy - close() - Method in class me.saro.commons.excel.BasicExcel
-
close
- close() - Method in interface me.saro.commons.ftp.FTP
-
close
- close() - Method in class me.saro.commons.ftp.FTPS
- close() - Method in class me.saro.commons.ftp.SFTP
- close() - Method in class me.saro.commons.ssh.SSHExecutor
-
close
- close() - Method in class me.saro.commons.ssh.SSHShell
-
close
include cmdExitAndJoinEOF(); - cmd(String...) - Method in class me.saro.commons.ssh.SSHExecutor
-
send commend
- cmd(String...) - Method in class me.saro.commons.ssh.SSHShell
-
send commend
- cmdExitAndJoinEOF() - Method in class me.saro.commons.ssh.SSHShell
-
send commend "exit" and wait EOF
this method will ignore exceptions
there is the same next 2 line
cmd("exit");
joinEOF(); - Converter - Class in me.saro.commons
-
Converter
- create() - Static method in class me.saro.commons.bytes.ByteData
-
create
capacity : 8192 - create() - Static method in interface me.saro.commons.excel.Excel
- create(int, String) - Static method in class me.saro.commons.bytes.ByteData
-
create
capacity : 8192 - create(Class<T>) - Static method in class me.saro.commons.bytes.FixedDataFormat
-
create DataFormat
user defualt constructor - create(Class<T>, Supplier<T>) - Static method in class me.saro.commons.bytes.FixedDataFormat
-
create DataFormat
- create(String) - Static method in class me.saro.commons.bytes.ByteData
-
create
capacity : 8192 - createBulkExcel() - Static method in interface me.saro.commons.excel.Excel
- createFile(File, boolean, InputStream) - Static method in class me.saro.commons.Files
-
create file use the inputstream
- createFile(File, boolean, String, String) - Static method in class me.saro.commons.Files
-
create file use the string
- createRandomBase62String(int, int) - Static method in class me.saro.commons.Utils
-
create random base62 string
base62 : [ A-Z a-z 0-9 ] - createRandomString(char[], int) - Static method in class me.saro.commons.Utils
-
create random string
- createRandomString(char[], int, int) - Static method in class me.saro.commons.Utils
-
create random string
- Crypt - Interface in me.saro.commons.crypt
-
Crypt thread-safe
- custom(String, String) - Static method in interface me.saro.commons.web.Web
-
create custom method Web
D
- DateFormat - Class in me.saro.commons
-
Date Format
this class use SimpleDateFormat(thread-not-safe)
but this class thread-safe because every use clone by SimpleDateFormat - decodeBase64(String) - Static method in class me.saro.commons.bytes.Bytes
-
base64String to byte data
- decodeBase64(String, String) - Static method in class me.saro.commons.bytes.Bytes
-
base64 to text
- decrypt(String, byte[], byte[]) - Static method in interface me.saro.commons.crypt.Crypt
-
decrypt
- delete(String) - Method in interface me.saro.commons.ftp.FTP
-
remove file
- delete(String) - Method in class me.saro.commons.ftp.FTPS
- delete(String) - Method in class me.saro.commons.ftp.SFTP
- delete(String) - Static method in interface me.saro.commons.web.Web
-
create delete method Web
E
- encodeBase64String(byte[]) - Static method in class me.saro.commons.bytes.Bytes
-
byte data to base64String
- encodeBase64String(String, String) - Static method in class me.saro.commons.bytes.Bytes
-
text to base64String
- encrypt(String, byte[], byte[]) - Static method in interface me.saro.commons.crypt.Crypt
-
encrypt
- enterAsciiFileMode() - Method in class me.saro.commons.ftp.FTPS
-
ASCII FILE MODE
default : BINARY FILE MODE - enterBinaryFileMode() - Method in class me.saro.commons.ftp.FTPS
-
BINARY FILE MODE
default : BINARY FILE MODE - enterLocalActiveMode() - Method in class me.saro.commons.ftp.FTPS
-
on active mode
default value : passive mode - enterLocalPassiveMode() - Method in class me.saro.commons.ftp.FTPS
-
on passive mode
default value : passive mode - equals(Object) - Method in class me.saro.commons.DateFormat
-
equals
- equals(Object) - Method in class me.saro.commons.json.JsonReader
-
equals
- evl(String...) - Static method in class me.saro.commons.Utils
-
Empty Value Logic
- Excel - Interface in me.saro.commons.excel
-
excel
- ExcelCell - Class in me.saro.commons.excel
- ExcelRow - Class in me.saro.commons.excel
- executeAllThreads(int, List<T>, ThrowableFunction<T, R>) - Static method in class me.saro.commons.Utils
-
execute all threads
- executeAllThreads(ExecutorService, List<T>, ThrowableFunction<T, R>) - Static method in class me.saro.commons.Utils
-
execute all threads WARNING : this method does not shutdown to ExecutorService instance
F
- Files - Class in me.saro.commons
-
file util
- fill() - Method in annotation type me.saro.commons.bytes.annotations.FixedData
-
base fill
- fill() - Method in annotation type me.saro.commons.bytes.annotations.FixedText
-
base fill
- fillSpace() - Method in class me.saro.commons.bytes.ByteData
-
null bytes fill the spaces char
[0 0 0 0 97 (writePointer)0 0 0]
fillSpace()
[32 32 32 32 97 (writePointer)0 0 0] - filter(Map<K, V>, Predicate<Map.Entry<K, V>>) - Static method in class me.saro.commons.Maps
-
filter map
- FixedBinary - Annotation Type in me.saro.commons.bytes.annotations
-
binary data in FixedDataFormat
- FixedData - Annotation Type in me.saro.commons.bytes.annotations
-
FixedData
- FixedDataFormat<T> - Class in me.saro.commons.bytes
-
DataFormat
- FixedText - Annotation Type in me.saro.commons.bytes.annotations
-
text data in FixedDataFormat
- FixedTextAlign - Enum in me.saro.commons.bytes.annotations
-
Text Align
- format(String) - Method in class me.saro.commons.DateFormat
-
DateFormat to String
- format(String, String, String) - Static method in class me.saro.commons.DateFormat
-
convert string date format
- FTP - Interface in me.saro.commons.ftp
-
ftp
simple ftp class - FTPS - Class in me.saro.commons.ftp
-
FTP, FTPS
- FTPS(InetAddress, int, String, String, boolean) - Constructor for class me.saro.commons.ftp.FTPS
G
- get() - Method in interface me.saro.commons.function.ThrowableSupplier
- get(int) - Method in class me.saro.commons.json.JsonReader
-
get by index in the list
- get(String) - Method in class me.saro.commons.json.JsonReader
-
get by name in the object
- get(String) - Static method in interface me.saro.commons.web.Web
-
create get method Web
- getBody() - Method in class me.saro.commons.web.WebResult
-
get response body data
- getBody(T) - Method in class me.saro.commons.web.WebResult
-
get response body data
- getBodyWithThrow() - Method in class me.saro.commons.web.WebResult
-
get response body data throw null body
- getBodyWithThrow(Supplier<? extends X>) - Method in class me.saro.commons.web.WebResult
-
get response body data throw null body
- getCell() - Method in class me.saro.commons.excel.ExcelRow
- getCell(int) - Method in class me.saro.commons.excel.ExcelRow
- getCell(int, int) - Method in class me.saro.commons.excel.BasicExcel
- getCell(int, int) - Method in interface me.saro.commons.excel.Excel
- getCell(String) - Method in interface me.saro.commons.excel.Excel
- getDate() - Method in class me.saro.commons.DateFormat
-
get Date
- getDateValue(Date) - Method in class me.saro.commons.excel.ExcelCell
- getDayOfWeek() - Method in class me.saro.commons.DateFormat
-
get DayOfWeek
- getDoubleValue() - Method in class me.saro.commons.excel.ExcelCell
- getDoubleValue(double) - Method in class me.saro.commons.excel.ExcelCell
- getErrorBody() - Method in class me.saro.commons.web.WebResult
-
get response error body data
- getErrorBody(String) - Method in class me.saro.commons.web.WebResult
-
get response error body data
- getFloatValue() - Method in class me.saro.commons.excel.ExcelCell
- getFloatValue(float) - Method in class me.saro.commons.excel.ExcelCell
- getHours() - Method in class me.saro.commons.DateFormat
-
get Hours
- getInt(String, int) - Method in class me.saro.commons.json.JsonReader
- getIntegerStringValue(long) - Method in class me.saro.commons.excel.ExcelCell
- getIntValue() - Method in class me.saro.commons.excel.ExcelCell
- getIntValue(int) - Method in class me.saro.commons.excel.ExcelCell
- getLongValue() - Method in class me.saro.commons.excel.ExcelCell
- getLongValue(long) - Method in class me.saro.commons.excel.ExcelCell
- getMilliseconds() - Method in class me.saro.commons.DateFormat
-
get Milliseconds
WARNING : is not TimeInMillis - getMinute() - Method in class me.saro.commons.DateFormat
-
get Minute
- getMonth() - Method in class me.saro.commons.DateFormat
-
get Month
- getNextCell() - Method in class me.saro.commons.excel.ExcelCell
- getNextRow() - Method in class me.saro.commons.excel.ExcelRow
- getNextRowCell() - Method in class me.saro.commons.excel.ExcelCell
- getPoiCell(boolean) - Method in class me.saro.commons.excel.ExcelCell
- getPoiRow(boolean) - Method in class me.saro.commons.excel.ExcelRow
- getPoiSheet() - Method in class me.saro.commons.excel.BasicExcel
- getPoiSheet() - Method in interface me.saro.commons.excel.Excel
- getRequestCharset() - Method in interface me.saro.commons.web.Web
-
request charset
- getResponseCharset() - Method in interface me.saro.commons.web.Web
-
response charset
- getRow() - Method in class me.saro.commons.excel.BasicExcel
- getRow() - Method in interface me.saro.commons.excel.Excel
- getRow(int) - Method in class me.saro.commons.excel.BasicExcel
- getRow(int) - Method in interface me.saro.commons.excel.Excel
- getSeconds() - Method in class me.saro.commons.DateFormat
-
get Seconds
- getString(String) - Method in class me.saro.commons.json.JsonReader
-
get String
- getStringValue() - Method in class me.saro.commons.excel.ExcelCell
- getStringValue(String) - Method in class me.saro.commons.excel.ExcelCell
- getTimeInMillis() - Method in class me.saro.commons.DateFormat
-
get TimeInMillis
WARNING : is not Milliseconds - getWeekOfMonth() - Method in class me.saro.commons.DateFormat
-
get WeekOfMonth
- getWeekOfYear() - Method in class me.saro.commons.DateFormat
-
get WeekOfYear
- getYear() - Method in class me.saro.commons.DateFormat
-
get Year
H
- hasBody() - Method in class me.saro.commons.web.WebResult
-
has body
- hasDirectory(String) - Method in interface me.saro.commons.ftp.FTP
-
has directory in path
- hasDirectory(String) - Method in class me.saro.commons.ftp.FTPS
- hasDirectory(String) - Method in class me.saro.commons.ftp.SFTP
- hasFile(String) - Method in interface me.saro.commons.ftp.FTP
-
has file in path
- hasFile(String) - Method in class me.saro.commons.ftp.FTPS
- hasFile(String) - Method in class me.saro.commons.ftp.SFTP
- HashAlgorithm - Enum in me.saro.commons.converter
-
Converter Hash Algorithm
I
- ignore(ThrowableBiConsumer<T, U>) - Static method in interface me.saro.commons.function.ThrowableBiConsumer
-
ignore exception
this method recommend only special situation - ignore(ThrowableConsumer<T>) - Static method in interface me.saro.commons.function.ThrowableConsumer
-
ignore exception
this method recommend only special situation - ignore(ThrowableRunnable) - Static method in interface me.saro.commons.function.ThrowableRunnable
-
ignore exception
this method recommend only special situation - ignoreCertificate(HttpURLConnection) - Static method in class me.saro.commons.web.WebIgnoreCertificate
-
casing ignore certificate to HttpURLConnection
- ignoreNotFoundGetter() - Method in annotation type me.saro.commons.bytes.annotations.FixedData
-
ignore not found getter
- ignoreNotFoundSetter() - Method in annotation type me.saro.commons.bytes.annotations.FixedData
-
ignore not found setter
- inputStreamLineReader(InputStream, String, ThrowableFunction<Stream<String>, T>) - Static method in class me.saro.commons.Utils
-
inputStream line reader
WARNING : is not auto closed - inputStreamReader(InputStream, StreamReadConsumer) - Static method in class me.saro.commons.Utils
-
InputStream Reader
WARNING : is not auto closed - insert(byte[], int) - Method in class me.saro.commons.bytes.ByteData
-
insert
does not move write pointer - insert(byte[], int, int, int) - Method in class me.saro.commons.bytes.ByteData
-
insert
does not move write pointer - insert(String, int) - Method in class me.saro.commons.bytes.ByteData
-
insert
does not move write pointer - insertFill(byte, int, int) - Method in class me.saro.commons.bytes.ByteData
-
insert fill
- insertFillSpace(int, int) - Method in class me.saro.commons.bytes.ByteData
-
insert fill space
- insertFixed(String, int, byte, int) - Method in class me.saro.commons.bytes.ByteData
-
insert fixed data
- insertFixedAlignRight(String, int, byte, int) - Method in class me.saro.commons.bytes.ByteData
-
insert fixed data
- into(String) - Method in class me.saro.commons.json.JsonReader
-
get int
- IS_MAIL - Static variable in class me.saro.commons.Valids
-
mail check
- not allow Top-Level Domain
- not support unicode - isArray() - Method in class me.saro.commons.json.JsonReader
-
is Array
- isBulk() - Method in interface me.saro.commons.excel.Excel
- isConnected() - Method in class me.saro.commons.ssh.SSHShell
-
connected
- isDate(String, String) - Static method in class me.saro.commons.Valids
-
check date validation
- isEmpty() - Method in class me.saro.commons.excel.ExcelCell
- isEmpty() - Method in class me.saro.commons.excel.ExcelRow
- isMail(String, int) - Static method in class me.saro.commons.Valids
-
mail check
- not allow Top-Level Domain
- not support unicode - isNotBlank(String...) - Static method in class me.saro.commons.Valids
-
all parameters is not blank
- isNotNull(Object...) - Static method in class me.saro.commons.Valids
-
all parameters is not null
- isObject() - Method in class me.saro.commons.json.JsonReader
-
is Object
- isStatus2xx() - Method in class me.saro.commons.web.WebResult
-
is status 2xx
- isStatus3xx() - Method in class me.saro.commons.web.WebResult
-
is status 3xx
- isStatus4xx() - Method in class me.saro.commons.web.WebResult
-
is status 4xx
- isStatus5xx() - Method in class me.saro.commons.web.WebResult
-
is status 5xx
- isSuccess() - Method in class me.saro.commons.web.WebResult
-
is status 2xx + have not exception
J
- joinEOF() - Method in class me.saro.commons.ssh.SSHShell
-
cmd("exit"); and wait output
- JsonReader - Class in me.saro.commons.json
-
json Thread-safe
- JsonReader(Object) - Constructor for class me.saro.commons.json.JsonReader
-
create json reader
- JsonReader(String) - Constructor for class me.saro.commons.json.JsonReader
-
create json reader
- just(String, int, String, String, String, String...) - Static method in class me.saro.commons.ssh.SSHExecutor
-
send just commend and return result
K
- kill(Closeable) - Static method in class me.saro.commons.Utils
-
forced close without exception
- kill(Thread) - Static method in class me.saro.commons.Utils
-
kill thread without exception
L
- left - me.saro.commons.bytes.annotations.FixedTextAlign
-
align left [abc ] is [abc]
- length() - Method in annotation type me.saro.commons.bytes.annotations.FixedText
-
byte length
- length() - Method in class me.saro.commons.json.JsonReader
-
length
- lineReader(File, String, ThrowableFunction<Stream<String>, T>) - Static method in class me.saro.commons.Files
-
read line in the file
- lineReader(String, String, ThrowableFunction<Stream<String>, T>) - Static method in class me.saro.commons.Files
-
read line in the file
- linkStream(InputStream, OutputStream) - Static method in class me.saro.commons.Utils
-
link input to output stream
WARNING : is not auto closed - listDirectories() - Method in interface me.saro.commons.ftp.FTP
-
get directory list in now path
- listDirectories() - Method in class me.saro.commons.ftp.FTPS
- listDirectories() - Method in class me.saro.commons.ftp.SFTP
- listDirectories(Predicate<String>) - Method in interface me.saro.commons.ftp.FTP
-
get directory list in now path
- listDirectories(Predicate<String>) - Method in class me.saro.commons.ftp.FTPS
- listDirectories(Predicate<String>) - Method in class me.saro.commons.ftp.SFTP
- listFiles() - Method in interface me.saro.commons.ftp.FTP
-
get file list in now path
- listFiles() - Method in class me.saro.commons.ftp.FTPS
- listFiles() - Method in class me.saro.commons.ftp.SFTP
- listFiles(Predicate<String>) - Method in interface me.saro.commons.ftp.FTP
-
get file list in now path
- listFiles(Predicate<String>) - Method in class me.saro.commons.ftp.FTPS
- listFiles(Predicate<String>) - Method in class me.saro.commons.ftp.SFTP
- listFilesStream(File) - Static method in class me.saro.commons.Files
-
get files stream by directory
- listFilesStream(String) - Static method in class me.saro.commons.Files
-
get files stream by directory
M
- Maps - Class in me.saro.commons
-
map class
- Maps() - Constructor for class me.saro.commons.Maps
- MD5 - me.saro.commons.converter.HashAlgorithm
-
MD5 : not recommend
- me.saro.commons - package me.saro.commons
- me.saro.commons.bytes - package me.saro.commons.bytes
- me.saro.commons.bytes.annotations - package me.saro.commons.bytes.annotations
- me.saro.commons.converter - package me.saro.commons.converter
- me.saro.commons.crypt - package me.saro.commons.crypt
- me.saro.commons.excel - package me.saro.commons.excel
- me.saro.commons.ftp - package me.saro.commons.ftp
- me.saro.commons.function - package me.saro.commons.function
- me.saro.commons.json - package me.saro.commons.json
- me.saro.commons.ssh - package me.saro.commons.ssh
- me.saro.commons.web - package me.saro.commons.web
- mkdir(String) - Method in interface me.saro.commons.ftp.FTP
-
make new directory
- mkdir(String) - Method in class me.saro.commons.ftp.FTPS
- mkdir(String) - Method in class me.saro.commons.ftp.SFTP
- moveNextCell() - Method in class me.saro.commons.excel.ExcelRow
- moveNextRow() - Method in class me.saro.commons.excel.BasicExcel
- moveNextRow() - Method in interface me.saro.commons.excel.Excel
- moveSheet(int) - Method in class me.saro.commons.excel.BasicExcel
- moveSheet(int) - Method in interface me.saro.commons.excel.Excel
- moveWritePointer(int) - Method in class me.saro.commons.bytes.ByteData
-
move the write pointer (next write index pointer)
moveWritePointer(3) : next write index point 3, length 2
N
- Naming - Class in me.saro.commons
-
naming class
- Naming() - Constructor for class me.saro.commons.Naming
- newByteData(int, int) - Method in class me.saro.commons.bytes.ByteData
-
new ByteData
- norNumber(String) - Static method in class me.saro.commons.Utils
-
normalize number 1,000 -> 1000 -000123 -> -123 +0001,234 -> 1234 000123 -> 123 123.00 -> 123 " 123,456" -> 123456
- now() - Static method in class me.saro.commons.DateFormat
-
new instant DateFormat with Calendar.getInstance()
- NullOutputStream - Class in me.saro.commons
-
null output stream
this stream does not action
this class using that throw out to the output stream data - NullOutputStream() - Constructor for class me.saro.commons.NullOutputStream
- nvl(T...) - Static method in class me.saro.commons.Utils
-
Null Value Logic
O
- offset() - Method in annotation type me.saro.commons.bytes.annotations.FixedBinary
-
offset
- offset() - Method in annotation type me.saro.commons.bytes.annotations.FixedText
-
offset
- open(File) - Static method in interface me.saro.commons.excel.Excel
- open(String, int, String, String, String) - Static method in class me.saro.commons.ssh.SSHExecutor
-
open ssh
- open(String, int, String, String, String, ThrowableConsumer<String>) - Static method in class me.saro.commons.ssh.SSHShell
-
open ssh
- openFromFile(File, ThrowableTriConsumer<String, ZipEntry, InputStream>) - Static method in class me.saro.commons.Zips
-
open zip from file
- openFromWeb(BasicWeb, ThrowableTriConsumer<String, ZipEntry, InputStream>) - Static method in class me.saro.commons.Zips
-
open zip from web
- openFTP(String, int, String, String) - Static method in interface me.saro.commons.ftp.FTP
-
open ftp
- openFTP(InetAddress, int, String, String) - Static method in interface me.saro.commons.ftp.FTP
-
open ftp
- openFTPS(String, int, String, String) - Static method in interface me.saro.commons.ftp.FTP
-
open ftps
- openFTPS(InetAddress, int, String, String) - Static method in interface me.saro.commons.ftp.FTP
-
open ftps
- openSFTP(String, int, String, String) - Static method in interface me.saro.commons.ftp.FTP
-
open sftp
- openStreamNotClose(InputStream, ThrowableTriConsumer<String, ZipEntry, InputStream>) - Static method in class me.saro.commons.Zips
-
read zip file
WARNING : is not auto closed - output(OutputStream) - Method in class me.saro.commons.excel.BasicExcel
- output(OutputStream) - Method in interface me.saro.commons.excel.Excel
P
- parse(long) - Static method in class me.saro.commons.DateFormat
-
timeInMillis to DateFormat
- parse(String, String) - Static method in class me.saro.commons.DateFormat
-
String date to DateFormat
- parse(Date) - Static method in class me.saro.commons.DateFormat
-
date to DateFormat
- parseDouble(String) - Static method in class me.saro.commons.Utils
-
String to double
- parseLong(String) - Static method in class me.saro.commons.Utils
-
String to long
- patch(String) - Static method in interface me.saro.commons.web.Web
-
create patch method Web
- path() - Method in interface me.saro.commons.ftp.FTP
-
get now path
same method path(), pwd() - path() - Method in class me.saro.commons.ftp.FTPS
- path() - Method in class me.saro.commons.ftp.SFTP
- path(String) - Method in interface me.saro.commons.ftp.FTP
-
move path
same method path(), cd() - path(String) - Method in class me.saro.commons.ftp.FTPS
- path(String) - Method in class me.saro.commons.ftp.SFTP
- pick(Map<K, V>, K...) - Static method in class me.saro.commons.Maps
-
pick the keys and make sub map
- post(String) - Static method in interface me.saro.commons.web.Web
-
create post method Web
- put(String) - Static method in interface me.saro.commons.web.Web
-
create put method Web
- pwd() - Method in interface me.saro.commons.ftp.FTP
-
print working directory
same method path(), pwd()
R
- radix() - Method in annotation type me.saro.commons.bytes.annotations.FixedText
-
radix of the number type
support : byte, short, int, long - random(long, long) - Static method in class me.saro.commons.Utils
-
get random
- read(int) - Method in class me.saro.commons.bytes.ByteData
-
read
- readIgnore(int) - Method in class me.saro.commons.bytes.ByteData
-
read ignore
- readIgnoreCurrentLine() - Method in class me.saro.commons.bytes.ByteData
-
move read pointer to next line
- readIgnoreMatch(byte) - Method in class me.saro.commons.bytes.ByteData
-
read ignore
- readPivotTable(String, int, int, ThrowableFunction<List<ExcelCell>, R>) - Method in interface me.saro.commons.excel.Excel
- readPivotTable(String, int, ThrowableFunction<List<ExcelCell>, R>) - Method in interface me.saro.commons.excel.Excel
- readRawResultStream(ThrowableConsumer<InputStream>) - Method in interface me.saro.commons.web.Web
-
readRawResultStream
- readTable(String, int, int, ThrowableFunction<List<ExcelCell>, R>) - Method in interface me.saro.commons.excel.Excel
- readTable(String, int, ThrowableFunction<List<ExcelCell>, R>) - Method in interface me.saro.commons.excel.Excel
- readText(int, boolean) - Method in class me.saro.commons.bytes.ByteData
-
read text
- readTextAlignRight(int, boolean) - Method in class me.saro.commons.bytes.ByteData
-
read text
- readTextInt(int, int) - Method in class me.saro.commons.bytes.ByteData
-
read text int
- readTextLong(int, long) - Method in class me.saro.commons.bytes.ByteData
-
read text long
- rectifyWritePointer() - Method in class me.saro.commons.bytes.ByteData
-
rectify the write pointer (next write index pointer)
create and insert method and to String is ""
because insert method is not moving write pointer
this method is moving pointer last data of buffer
ex) create
[0 0 0 0 0 0 0 0] / write pointer:0
insert("a", 3); [0 0 0 97 0 0 0 0] / write pointer:0
rectifyWritePointer();
[0 0 0 97 0 0 0 0] / write pointer:4 - recv(String, File) - Method in interface me.saro.commons.ftp.FTP
-
recv file
- recv(String, File) - Method in class me.saro.commons.ftp.FTPS
- recv(String, File) - Method in class me.saro.commons.ftp.SFTP
- recv(List<String>, File) - Method in interface me.saro.commons.ftp.FTP
-
recv file list
- right - me.saro.commons.bytes.annotations.FixedTextAlign
-
align right [ abc] is [abc]
- run() - Method in interface me.saro.commons.function.ThrowableRunnable
- runtime(ThrowableBiConsumer<T, U>) - Static method in interface me.saro.commons.function.ThrowableBiConsumer
-
throws Exception lambda to throws RuntimeException lambda
- runtime(ThrowableBiFunction<T, U, R>) - Static method in interface me.saro.commons.function.ThrowableBiFunction
-
throws Exception lambda to throws RuntimeException lambda
- runtime(ThrowableConsumer<T>) - Static method in interface me.saro.commons.function.ThrowableConsumer
-
throws Exception lambda to throws RuntimeException lambda
- runtime(ThrowableFunction<T, R>) - Static method in interface me.saro.commons.function.ThrowableFunction
-
throws Exception lambda to throws RuntimeException lambda
- runtime(ThrowablePredicate<T>) - Static method in interface me.saro.commons.function.ThrowablePredicate
-
throws Exception lambda to throws RuntimeException lambda
- runtime(ThrowableRunnable) - Static method in interface me.saro.commons.function.ThrowableRunnable
-
throws Exception lambda to throws RuntimeException lambda
- runtime(ThrowableSupplier<R>) - Static method in interface me.saro.commons.function.ThrowableSupplier
-
throws Exception lambda to throws RuntimeException lambda
S
- save(File, boolean) - Method in class me.saro.commons.excel.BasicExcel
- save(File, boolean) - Method in interface me.saro.commons.excel.Excel
- saveFile(File, boolean) - Method in interface me.saro.commons.web.Web
-
save file and return WebResult
- send(File) - Method in interface me.saro.commons.ftp.FTP
-
send file
- send(String, File) - Method in interface me.saro.commons.ftp.FTP
-
send file
- send(String, File) - Method in class me.saro.commons.ftp.FTPS
- send(String, File) - Method in class me.saro.commons.ftp.SFTP
- set(Object) - Method in class me.saro.commons.excel.ExcelCell
- setConnectTimeout(int) - Method in class me.saro.commons.web.BasicWeb
-
Connect Timeout
- setConnectTimeout(int) - Method in interface me.saro.commons.web.Web
-
Connect Timeout
- setContentType(String) - Method in interface me.saro.commons.web.Web
-
set header ContentType
- setContentTypeApplicationJson() - Method in interface me.saro.commons.web.Web
-
ContentType application/json
- setDate(int) - Method in class me.saro.commons.DateFormat
-
set Date
- setHeader(String, String) - Method in class me.saro.commons.web.BasicWeb
-
set header
- setHeader(String, String) - Method in interface me.saro.commons.web.Web
-
set header
- setHours(int) - Method in class me.saro.commons.DateFormat
-
set Hours
- setIgnoreCertificate(boolean) - Method in class me.saro.commons.web.BasicWeb
-
ignore https certificate
this method not recommend
ignore certificate is defenseless the MITM(man-in-the-middle attack) - setIgnoreCertificate(boolean) - Method in interface me.saro.commons.web.Web
-
ignore https certificate
this method not recommend
ignore certificate is defenseless the MITM(man-in-the-middle attack) - setMilliseconds(int) - Method in class me.saro.commons.DateFormat
-
set milliseconds
WARNING : is not TimeInMillis - setMinutes(int) - Method in class me.saro.commons.DateFormat
-
set Minutes
- setMonth(int) - Method in class me.saro.commons.DateFormat
-
set Month
- setReadTimeout(int) - Method in class me.saro.commons.web.BasicWeb
-
Read Timeout
- setReadTimeout(int) - Method in interface me.saro.commons.web.Web
-
Read Timeout
- setRequestCharset(String) - Method in class me.saro.commons.web.BasicWeb
-
set request Charset
- setRequestCharset(String) - Method in interface me.saro.commons.web.Web
-
set request Charset
- setResponseCharset(String) - Method in class me.saro.commons.web.BasicWeb
-
set response charset
- setResponseCharset(String) - Method in interface me.saro.commons.web.Web
-
set response charset
- setSeconds(int) - Method in class me.saro.commons.DateFormat
-
set Seconds
- setTimeInMillis(long) - Method in class me.saro.commons.DateFormat
-
set TimeInMillis WARNING : is not Milliseconds
- setUseEPSVwithIPv4(boolean) - Method in class me.saro.commons.ftp.FTPS
-
user Extended Passive Mode with IPv4
default false - setYear(int) - Method in class me.saro.commons.DateFormat
-
set Year
- SFTP - Class in me.saro.commons.ftp
-
SFTP
- SFTP(String, int, String, String) - Constructor for class me.saro.commons.ftp.SFTP
- SHA_224 - me.saro.commons.converter.HashAlgorithm
- SHA_256 - me.saro.commons.converter.HashAlgorithm
- SHA_384 - me.saro.commons.converter.HashAlgorithm
- SHA_512_224 - me.saro.commons.converter.HashAlgorithm
- SHA_512_256 - me.saro.commons.converter.HashAlgorithm
- SHA1 - me.saro.commons.converter.HashAlgorithm
- SHA3_224 - me.saro.commons.converter.HashAlgorithm
- SHA3_256 - me.saro.commons.converter.HashAlgorithm
- SHA3_384 - me.saro.commons.converter.HashAlgorithm
- SHA3_512 - me.saro.commons.converter.HashAlgorithm
- size() - Method in annotation type me.saro.commons.bytes.annotations.FixedData
-
byte size
- size() - Method in class me.saro.commons.bytes.ByteData
-
data size
- splitByToken(String, String) - Static method in class me.saro.commons.Converter
-
split by token
- splitCsvLine(String) - Static method in class me.saro.commons.Converter
-
split csv line
- SSHExecutor - Class in me.saro.commons.ssh
- SSHShell - Class in me.saro.commons.ssh
-
SSH Shell
- StreamReadConsumer - Interface in me.saro.commons.function
-
InputStream consumer
T
- test(T) - Method in interface me.saro.commons.function.ThrowablePredicate
- ThrowableBiConsumer<T,U> - Interface in me.saro.commons.function
-
Throwable
BiConsumer - ThrowableBiFunction<T,U,R> - Interface in me.saro.commons.function
-
Throwable
BiFunction - ThrowableConsumer<T> - Interface in me.saro.commons.function
-
Throwable
Consumer - ThrowableFunction<T,R> - Interface in me.saro.commons.function
-
Throwable
Function - ThrowablePredicate<T> - Interface in me.saro.commons.function
-
Throwable
Predicate - ThrowableRunnable - Interface in me.saro.commons.function
-
Throwable
Runnable - ThrowableSupplier<R> - Interface in me.saro.commons.function
-
Throwable
Supplier - ThrowableTriConsumer<T,U,V> - Interface in me.saro.commons.function
-
Throwable
TriConsumer - ThrowableTriFunction<T,U,V,R> - Interface in me.saro.commons.function
-
Throwable
TriFunction - timerTask(ThrowableConsumer<TimerTask>) - Static method in class me.saro.commons.Utils
-
timertask
- timestamp(ThrowableRunnable) - Static method in class me.saro.commons.Utils
-
timestamp
check time of the runnable - to(File, File, boolean) - Method in interface me.saro.commons.crypt.Crypt
-
input file -> (en/de)crypt -> output file
- to(InputStream, OutputStream) - Method in interface me.saro.commons.crypt.Crypt
-
input -> (en/de)crypt -> output
- toBase64(byte[]) - Method in interface me.saro.commons.crypt.Crypt
-
to base64 string
input bytes -> (en/de)crypt -> output base64 string - toBase64(byte[], int, int) - Method in interface me.saro.commons.crypt.Crypt
-
to base64 string
input bytes -> (en/de)crypt -> output base64 string - toBase64ByBase64(String) - Method in interface me.saro.commons.crypt.Crypt
-
to base64 string
input base64 string -> (en/de)crypt -> output base64 string - toBase64ByHex(String) - Method in interface me.saro.commons.crypt.Crypt
-
to base64 string
input hex string -> (en/de)crypt -> output base64 string - toBasicFileAttributes(File) - Static method in class me.saro.commons.Files
-
get file infomation
- toByteArrayOutputStream(InputStream, int) - Static method in class me.saro.commons.Converter
-
InputStream to ByteArrayOutputStream
this function not close inputstream - toBytes() - Method in class me.saro.commons.bytes.ByteData
-
to bytes
- toBytes(byte[]) - Method in interface me.saro.commons.crypt.Crypt
-
to byte
input bytes -> (en/de)crypt -> output bytes - toBytes(byte[], int, int) - Method in interface me.saro.commons.crypt.Crypt
-
to byte
input bytes -> (en/de)crypt -> output bytes - toBytes(double) - Static method in class me.saro.commons.bytes.Bytes
-
double to bytes
- toBytes(float) - Static method in class me.saro.commons.bytes.Bytes
-
float to bytes
- toBytes(int) - Static method in class me.saro.commons.bytes.Bytes
-
int to bytes
- toBytes(int, int) - Method in class me.saro.commons.bytes.ByteData
-
to bytes
- toBytes(long) - Static method in class me.saro.commons.bytes.Bytes
-
long to bytes
- toBytes(short) - Static method in class me.saro.commons.bytes.Bytes
-
short to bytes
- toBytes(InputStream, int) - Static method in class me.saro.commons.Converter
-
InputStream to byte[]
- toBytes(T) - Method in class me.saro.commons.bytes.FixedDataFormat
-
to bytes
- toBytesByBase64(String) - Method in interface me.saro.commons.crypt.Crypt
-
to byte
input base64 string -> (en/de)crypt -> output bytes - toBytesByHex(String) - Static method in class me.saro.commons.bytes.Bytes
-
to bytes by hex string
- toBytesByHex(String) - Method in interface me.saro.commons.crypt.Crypt
-
to byte
input hex string -> (en/de)crypt -> output bytes - toCamelCase(List<String>) - Static method in class me.saro.commons.Naming
-
toCamelCase
- toCellIndex(String) - Static method in class me.saro.commons.excel.ExcelCell
-
to cell index
- toClass(byte[]) - Method in class me.saro.commons.bytes.FixedDataFormat
- toClass(byte[], int) - Method in class me.saro.commons.bytes.FixedDataFormat
- toClassByJson(String, TypeReference<T>) - Static method in class me.saro.commons.Converter
-
deserialize json (Object, Array) to Class by TypeReference
casing IOException to RuntimeException - toClassWithCheckSize(byte[]) - Method in class me.saro.commons.bytes.FixedDataFormat
- toClassWithCheckSize(String) - Method in class me.saro.commons.bytes.FixedDataFormat
- toClassWithCheckSize(String, String) - Method in class me.saro.commons.bytes.FixedDataFormat
- toColumnName(int, int) - Static method in class me.saro.commons.excel.ExcelCell
-
to column name
- toColumnNameByCellIndex(int) - Static method in class me.saro.commons.excel.ExcelCell
- toColumnNameByRowIndex(int) - Static method in class me.saro.commons.excel.ExcelRow
- toCustom(ThrowableFunction<InputStream, R>) - Method in interface me.saro.commons.web.Web
-
to Custom result
- toCustom(WebResult<R>, ThrowableFunction<InputStream, R>) - Method in class me.saro.commons.web.BasicWeb
-
to Custom result
- toCustom(WebResult<R>, ThrowableFunction<InputStream, R>) - Method in interface me.saro.commons.web.Web
-
to Custom result
- toDashes(List<String>) - Static method in class me.saro.commons.Naming
-
toDashes
- toDate() - Method in class me.saro.commons.DateFormat
-
to Date
- toDate(Cell, Date) - Static method in class me.saro.commons.excel.ExcelCell
-
toDate by cell
- toDouble(byte[]) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to double
- toDouble(byte[], int) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to double
- toDouble(Cell) - Static method in class me.saro.commons.excel.ExcelCell
-
toDouble by cell
- toDouble(Cell, double) - Static method in class me.saro.commons.excel.ExcelCell
-
toDouble by cell
- toFileExt(File) - Static method in class me.saro.commons.Files
-
to File ext (only lowercase)
- toFileExt(String) - Static method in class me.saro.commons.Files
-
to File ext (only lowercase)
- toFloat(byte[]) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to float
- toFloat(byte[], int) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to float
- toHash(HashAlgorithm, byte[]) - Static method in class me.saro.commons.Converter
-
to Hash
- toHash(HashAlgorithm, String) - Static method in class me.saro.commons.Converter
-
to Hash
charset is UTF-8 - toHash(HashAlgorithm, String, String) - Static method in class me.saro.commons.Converter
-
to Hash
- toHashHex(HashAlgorithm, String) - Static method in class me.saro.commons.Converter
- toHashHex(HashAlgorithm, String, String) - Static method in class me.saro.commons.Converter
- toHex(byte[]) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to hex
- toHex(byte[]) - Method in interface me.saro.commons.crypt.Crypt
-
to hex string
input bytes -> (en/de)crypt -> output hex string - toHex(byte[], int, int) - Method in interface me.saro.commons.crypt.Crypt
-
to hex string
input bytes -> (en/de)crypt -> output hex string - toHexByBase64(String) - Method in interface me.saro.commons.crypt.Crypt
-
to hex string
input base64 string -> (en/de)crypt -> output hex string - toHexByHex(String) - Method in interface me.saro.commons.crypt.Crypt
-
to hex string
input hex string -> (en/de)crypt -> output hex string - toInt(byte[]) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to int
- toInt(byte[], int) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to int
- toISO8601() - Method in class me.saro.commons.DateFormat
-
to ISO8601
- toJson(Object) - Static method in class me.saro.commons.Converter
-
class to json String
- toJsonReader() - Method in interface me.saro.commons.web.Web
-
to JsonReader
- toJsonTypeReference(TypeReference<T>) - Method in interface me.saro.commons.web.Web
-
to Json result by TypeReference
- toList() - Method in class me.saro.commons.json.JsonReader
-
to list
- toList(Iterable<T>) - Static method in class me.saro.commons.Converter
-
Iterable to List
- toList(Enumeration<T>) - Static method in class me.saro.commons.Converter
-
Enumeration to List
- toLong(byte[]) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to long
- toLong(byte[], int) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to long
- toMap(Object...) - Static method in class me.saro.commons.Converter
-
simple to map
use LinkedHashMap
WARNING : this function not checked entries class type - toMap(Object...) - Static method in class me.saro.commons.Maps
-
simple to map
use LinkedHashMap
WARNING : this function not checked entries class type - toMapByClass(Object) - Static method in class me.saro.commons.Converter
-
object to Map
- toMapByJsonObject() - Method in interface me.saro.commons.web.Web
-
to Map result by JsonObject
- toMapByJsonObject(String) - Static method in class me.saro.commons.Converter
-
deserialize json Object to Map [String, Object]
casing IOException to RuntimeException - toMapListByClassList(Object) - Static method in class me.saro.commons.Converter
-
object to Map list
- toMapListByJsonArray() - Method in interface me.saro.commons.web.Web
-
to Map List result by JsonArray
- toMapListByJsonArray(String) - Static method in class me.saro.commons.Converter
-
deserialize json Arrays to List [ Map [String, Object] ]
casing IOException to RuntimeException - toPascalCase(List<String>) - Static method in class me.saro.commons.Naming
-
toPascalCase
- toPlainText() - Method in interface me.saro.commons.web.Web
-
to text result
- toRowCellIndex(String) - Static method in class me.saro.commons.excel.ExcelCell
-
to row cell index
- toRowIndex(String) - Static method in class me.saro.commons.excel.ExcelRow
- toShort(byte[]) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to short
- toShort(byte[], int) - Static method in class me.saro.commons.bytes.Bytes
-
bytes to short
- toStream(Iterable<T>) - Static method in class me.saro.commons.Converter
-
Iterable to stream
- toStream(Iterable<T>, boolean) - Static method in class me.saro.commons.Converter
-
Iterable to stream
- toStream(Enumeration<T>) - Static method in class me.saro.commons.Converter
-
Enumeration to Stream
- toStream(Enumeration<T>, boolean) - Static method in class me.saro.commons.Converter
-
Enumeration to Stream
- toStreamByResultSet(ResultSet, ThrowableBiFunction<String[], Object[], R>) - Static method in class me.saro.commons.Converter
-
ResultSet to Stream
- toStreamByResultSet(ResultSet, ThrowableFunction<ResultSet, R>) - Static method in class me.saro.commons.Converter
-
ResultSet to Stream
- toStreamLineNotCloseByTextInputStream(InputStream, String) - Static method in class me.saro.commons.Converter
-
text InputStream to Stream
WARNING : this method not close InputStream - toString() - Method in class me.saro.commons.bytes.ByteData
-
to string
- toString() - Method in class me.saro.commons.DateFormat
-
to ISO8601 yyyy-MM-dd'T'HH:mm:ssZ[+HH:mm]
- toString() - Method in class me.saro.commons.json.JsonReader
-
to json string
- toString(File, String) - Static method in class me.saro.commons.Converter
-
text file to String
- toString(InputStream, String) - Static method in class me.saro.commons.Converter
-
InputStream to String
- toString(Exception) - Static method in class me.saro.commons.Converter
-
Exception to String
- toString(String) - Method in class me.saro.commons.DateFormat
-
DateFormat to String
same format(String format) - toString(URL, String) - Static method in class me.saro.commons.Converter
-
url to String
- toString(Cell, String) - Static method in class me.saro.commons.excel.ExcelCell
-
toString by cell
- toStringNotClose(InputStream, String) - Static method in class me.saro.commons.Converter
-
InputStream to String
WARNING : this method not close InputStream - toUnderscores(List<String>) - Static method in class me.saro.commons.Naming
-
toUnderscores
- toWordsByCamelCase(String) - Static method in class me.saro.commons.Naming
-
toWordsByCamelCase
- toWordsByDashes(String) - Static method in class me.saro.commons.Naming
-
toWordsByDashes
- toWordsByPascalCase(String) - Static method in class me.saro.commons.Naming
-
toWordsByPascalCase
- toWordsByUnderscores(String) - Static method in class me.saro.commons.Naming
-
toWordsByUnderscores
U
- unsigned() - Method in annotation type me.saro.commons.bytes.annotations.FixedText
-
is unsigned of the number type
support : byte, short, int, long - Utils - Class in me.saro.commons
-
util class
V
- valid(String, String) - Static method in class me.saro.commons.DateFormat
-
date validator
- validFileExt(File, String...) - Static method in class me.saro.commons.Files
-
valid check for the file ext
- validFileExt(String, String...) - Static method in class me.saro.commons.Files
-
valid check for the file ext
- Valids - Class in me.saro.commons
-
Valids
- value() - Method in enum me.saro.commons.converter.HashAlgorithm
-
get value
- valueOf(String) - Static method in enum me.saro.commons.bytes.annotations.FixedTextAlign
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum me.saro.commons.converter.HashAlgorithm
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum me.saro.commons.bytes.annotations.FixedTextAlign
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum me.saro.commons.converter.HashAlgorithm
-
Returns an array containing the constants of this enum type, in the order they are declared.
W
- Web - Interface in me.saro.commons.web
-
Web Client
- WebIgnoreCertificate - Class in me.saro.commons.web
-
Web Ignore Certificate
- WebResult<T> - Class in me.saro.commons.web
-
web result
- write(byte[]) - Method in class me.saro.commons.bytes.ByteData
-
write data
- write(byte[], int, int) - Method in class me.saro.commons.bytes.ByteData
-
write data
- write(int) - Method in class me.saro.commons.NullOutputStream
- write(File) - Method in class me.saro.commons.bytes.ByteData
-
write file input stream
- write(File, String) - Method in class me.saro.commons.bytes.ByteData
-
write file input stream
- write(InputStream) - Method in class me.saro.commons.bytes.ByteData
-
write inputstream
inputstream will not be closed - write(InputStream, int) - Method in class me.saro.commons.bytes.ByteData
-
write inputstream
inputstream will not be closed - write(String) - Method in class me.saro.commons.bytes.ByteData
-
write data
- writeBody(byte[]) - Method in class me.saro.commons.web.BasicWeb
-
write body binary
- writeBody(byte[]) - Method in interface me.saro.commons.web.Web
-
write body binary
- writeBody(String) - Method in interface me.saro.commons.web.Web
-
write Body text
- writeBodyParameter(String, String) - Method in class me.saro.commons.web.BasicWeb
-
writeBodyParameter
WARNING : is not json type
web
.writeBodyParameter("aa", "11")
.writeBodyParameter("bb", "22");
equals
aa=11&bb=22 - writeBodyParameter(String, String) - Method in interface me.saro.commons.web.Web
-
writeBodyParameter
WARNING : is not json type
web
.writeBodyParameter("aa", "11")
.writeBodyParameter("bb", "22");
equals
aa=11&bb=22 - writeFill(byte, int) - Method in class me.saro.commons.bytes.ByteData
-
write fill
- writeFillSpace(int) - Method in class me.saro.commons.bytes.ByteData
-
write fill space
- writeFixed(int, int, byte) - Method in class me.saro.commons.bytes.ByteData
-
write fixed size
- writeFixed(String, int, byte) - Method in class me.saro.commons.bytes.ByteData
-
write fixed size
- writeFixedAlignRight(int, int, byte) - Method in class me.saro.commons.bytes.ByteData
-
write fixed size
- writeFixedAlignRight(String, int, byte) - Method in class me.saro.commons.bytes.ByteData
-
write fixed size
- writeHorizontalList(String, Collection<Object>) - Method in interface me.saro.commons.excel.Excel
- writeJsonByClass(Object) - Method in interface me.saro.commons.web.Web
-
write json class
use jackson lib - writeLine1() - Method in class me.saro.commons.bytes.ByteData
-
write \n
- writeLine2() - Method in class me.saro.commons.bytes.ByteData
-
write \r\n
- writePivotTable(String, Collection<String>, List<T>) - Method in interface me.saro.commons.excel.Excel
- writeTable(String, Collection<String>, List<T>) - Method in interface me.saro.commons.excel.Excel
- writeVerticalList(String, Collection<Object>) - Method in interface me.saro.commons.excel.Excel
Z
- zerofill(int, int) - Static method in class me.saro.commons.Utils
-
zerofill
- zerofill(long, int) - Static method in class me.saro.commons.Utils
-
zerofill
- zerofill(String, int) - Static method in class me.saro.commons.Utils
-
zerofill
- Zips - Class in me.saro.commons
-
zip util class
All Classes All Packages