Index

A B C D E F G H I K L M N O P R S T V W Z 
All Classes All Packages

A

accept(T) - Method in interface me.saro.kit.functions.ThrowableConsumer
 
accept(T, U) - Method in interface me.saro.kit.functions.ThrowableBiConsumer
 
accept(T, U, V) - Method in interface me.saro.kit.functions.ThrowableTriConsumer
 
add(byte[]) - Method in class me.saro.kit.bytes.BytesWriter
 
add(byte[], int, int) - Method in class me.saro.kit.bytes.BytesWriter
 
add(int, int) - Method in class me.saro.kit.bytes.BytesWriter
 
add(long, int) - Method in class me.saro.kit.bytes.BytesWriter
 
add(short, int) - Method in class me.saro.kit.bytes.BytesWriter
 
add(String) - Method in class me.saro.kit.bytes.BytesWriter
 
add(String, int) - Method in class me.saro.kit.bytes.BytesWriter
 
addUrlParameter(String, String) - Method in interface me.saro.kit.webs.SimpleWeb
add url parameter
always append url parameter even post method
is not body write
addUrlParameter(String, String) - Method in class me.saro.kit.webs.SimpleWebImpl
add url parameter
always append url parameter even post method
is not body write
apply(T) - Method in interface me.saro.kit.functions.ThrowableFunction
 
apply(T, U) - Method in interface me.saro.kit.functions.ThrowableBiFunction
 
apply(T, U, V) - Method in interface me.saro.kit.functions.ThrowableTriFunction
 
asList(T...) - Static method in class me.saro.kit.Lists
This method, unlike "Arrays.asList", can editable the returned result.
attributesFilter(ThrowablePredicate<BasicFileAttributes>) - Static method in class me.saro.kit.Files
convert BasicFileAttributes to FileFilter

ex) // delete created before 24 hour file in /testpath
long before24hour = DateFormat.now().addHours(-24).getTimeInMillis();
Files.list("/testpath").stream()
.filter(Files.attributesFilter(attr -> attr.creationTime().toMillis() < before24hour))
.forEach(File::delete);

B

bind(InputStream, byte[], int) - Static method in class me.saro.kit.Streams
input stream bind to byte array
bind(OutputStream) - Method in class me.saro.kit.bytes.BytesWriter
 
bvl(String...) - Static method in class me.saro.kit.Texts
blank value logic
Bytes - Class in me.saro.kit.bytes
bytes
BytesReader - Class in me.saro.kit.bytes
 
BytesReader(byte[]) - Constructor for class me.saro.kit.bytes.BytesReader
 
BytesReader(byte[], Charset) - Constructor for class me.saro.kit.bytes.BytesReader
 
BytesReader(InputStream) - Constructor for class me.saro.kit.bytes.BytesReader
 
BytesReader(InputStream, Charset) - Constructor for class me.saro.kit.bytes.BytesReader
 
BytesReader(String, Charset) - Constructor for class me.saro.kit.bytes.BytesReader
 
BytesWriter - Class in me.saro.kit.bytes
 
BytesWriter() - Constructor for class me.saro.kit.bytes.BytesWriter
 
BytesWriter(int, Charset) - Constructor for class me.saro.kit.bytes.BytesWriter
 

C

CacheStore<ID,​T> - Class in me.saro.kit
 
CacheStore(long) - Constructor for class me.saro.kit.CacheStore
 
CacheStore.CacheWrapper<T> - Class in me.saro.kit
 
CacheWrapper(long, T) - Constructor for class me.saro.kit.CacheStore.CacheWrapper
 
clear() - Method in class me.saro.kit.CacheStore
clear
clone() - Method in class me.saro.kit.dates.ConstDateTime
clone
ConstDateTime - Class in me.saro.kit.dates
const date time
this class thread-safe because all compute use clone
copy(byte[], boolean) - Static method in class me.saro.kit.bytes.Bytes
reverse
copy(byte[], int, int, boolean) - Static method in class me.saro.kit.bytes.Bytes
reverse
createFile(File, boolean, InputStream) - Static method in class me.saro.kit.Files
create file
createFile(File, boolean, String, String) - Static method in class me.saro.kit.Files
create file
createRandomBase62String(int, int) - Static method in class me.saro.kit.Texts
create random base62 string
base62 : [ A-Z a-z 0-9 ]
createRandomString(char[], int) - Static method in class me.saro.kit.Texts
create random string
createRandomString(char[], int, int) - Static method in class me.saro.kit.Texts
create random string
custom(String, String) - Static method in interface me.saro.kit.webs.SimpleWeb
create custom method Web

D

Dates - Class in me.saro.kit.dates
date util
Dates() - Constructor for class me.saro.kit.dates.Dates
 
decodeBase64(String) - Static method in class me.saro.kit.bytes.Bytes
base64String to byte data
decodeBase64(String, String) - Static method in class me.saro.kit.bytes.Bytes
base64 to text
decrypt(String, byte[], byte[]) - Static method in interface me.saro.kit.crypts.SimpleCrypt
decrypt
delete(String) - Static method in interface me.saro.kit.webs.SimpleWeb
create delete method Web
diffDays(ConstDateTime) - Method in class me.saro.kit.dates.ConstDateTime
diff day
diffMonths(ConstDateTime) - Method in class me.saro.kit.dates.ConstDateTime
diff month
diffYears(ConstDateTime) - Method in class me.saro.kit.dates.ConstDateTime
diff year

E

encodeBase64String(byte[]) - Static method in class me.saro.kit.bytes.Bytes
byte data to base64String
encodeBase64String(String, String) - Static method in class me.saro.kit.bytes.Bytes
text to base64String
encrypt(String, byte[], byte[]) - Static method in interface me.saro.kit.crypts.SimpleCrypt
encrypt
equals(Object) - Method in class me.saro.kit.dates.ConstDateTime
equals
equalsYear(ConstDateTime) - Method in class me.saro.kit.dates.ConstDateTime
 
equalsYearMonth(ConstDateTime) - Method in class me.saro.kit.dates.ConstDateTime
 
equalsYearMonthDate(ConstDateTime) - Method in class me.saro.kit.dates.ConstDateTime
 
evl(String...) - Static method in class me.saro.kit.Texts
empty value logic
Exceptions - Class in me.saro.kit
Exception util
Exceptions() - Constructor for class me.saro.kit.Exceptions
 
executeAllThreads(int, List<T>, ThrowableFunction<T, R>) - Static method in class me.saro.kit.Threads
execute all threads
executeAllThreads(ExecutorService, List<T>, ThrowableFunction<T, R>) - Static method in class me.saro.kit.Threads
execute all threads WARNING : this method does not shutdown to ExecutorService instance

F

Files - Class in me.saro.kit
file util
Files() - Constructor for class me.saro.kit.Files
 
fillByte(byte) - Method in class me.saro.kit.bytes.BytesWriter
 
format(String) - Method in class me.saro.kit.dates.ConstDateTime
DateFormat to String
format(String, String, String) - Static method in class me.saro.kit.dates.ConstDateTime
convert string date format
format(Date, String) - Static method in class me.saro.kit.dates.Dates
format

G

gap(String, String, String) - Static method in class me.saro.kit.Texts
return gap
get() - Method in class me.saro.kit.CacheStore.CacheWrapper
 
get() - Method in interface me.saro.kit.functions.ThrowableSupplier
 
get(ID, Function<ID, T>) - Method in class me.saro.kit.CacheStore
get
get(String) - Static method in interface me.saro.kit.webs.SimpleWeb
create get method Web
getAfterForcedUpdate(ID, T) - Method in class me.saro.kit.CacheStore
get after forced update
getBody() - Method in class me.saro.kit.webs.SimpleWebResult
get response body data
getBody(T) - Method in class me.saro.kit.webs.SimpleWebResult
get response body data
getBodyWithThrow() - Method in class me.saro.kit.webs.SimpleWebResult
get response body data throw null body
getBodyWithThrow(Supplier<? extends X>) - Method in class me.saro.kit.webs.SimpleWebResult
get response body data throw null body
getBytes(String, String) - Static method in class me.saro.kit.Texts
get bytes
getDate() - Method in class me.saro.kit.dates.ConstDateTime
get Date
getDayOfIntWeek() - Method in class me.saro.kit.dates.ConstDateTime
get DayOfIntWeek 0:sun - 1:mon ... 6:sat
getDayOfWeek() - Method in class me.saro.kit.dates.ConstDateTime
get DayOfWeek
getErrorBody() - Method in class me.saro.kit.webs.SimpleWebResult
get response error body data
getErrorBody(String) - Method in class me.saro.kit.webs.SimpleWebResult
get response error body data
getException() - Method in class me.saro.kit.webs.SimpleWebResult
 
getHeaders() - Method in class me.saro.kit.webs.SimpleWebResult
 
getHours() - Method in class me.saro.kit.dates.ConstDateTime
get Hours
getLastDayOfMonth() - Method in class me.saro.kit.dates.ConstDateTime
Last Day Of Month
getMilliseconds() - Method in class me.saro.kit.dates.ConstDateTime
get Milliseconds
WARNING : is not TimeInMillis
getMinute() - Method in class me.saro.kit.dates.ConstDateTime
get Minute
getMonth() - Method in class me.saro.kit.dates.ConstDateTime
get Month
getRequestCharset() - Method in interface me.saro.kit.webs.SimpleWeb
request charset
getRequestCharset() - Method in class me.saro.kit.webs.SimpleWebImpl
 
getResponseCharset() - Method in interface me.saro.kit.webs.SimpleWeb
response charset
getResponseCharset() - Method in class me.saro.kit.webs.SimpleWebImpl
 
getSeconds() - Method in class me.saro.kit.dates.ConstDateTime
get Seconds
getStatus() - Method in class me.saro.kit.webs.SimpleWebResult
 
getTimeInMillis() - Method in class me.saro.kit.dates.ConstDateTime
get TimeInMillis
WARNING : is not Milliseconds
getWeekOfMonth() - Method in class me.saro.kit.dates.ConstDateTime
get WeekOfMonth
getWeekOfYear() - Method in class me.saro.kit.dates.ConstDateTime
get WeekOfYear
getYear() - Method in class me.saro.kit.dates.ConstDateTime
get Year

H

hasBody() - Method in class me.saro.kit.webs.SimpleWebResult
has body
HashAlgorithm - Enum in me.saro.kit.hashs
onverter Hash Algorithm
Hashs - Class in me.saro.kit.hashs
 
Hashs() - Constructor for class me.saro.kit.hashs.Hashs
 

I

ignore(ThrowableRunnable) - Static method in class me.saro.kit.Exceptions
ignore "Exception"
ignoreCertificate(HttpURLConnection) - Static method in class me.saro.kit.webs.SimpleWebIgnoreCertificate
casing ignore certificate to HttpURLConnection
IS_MAIL - Static variable in class me.saro.kit.Valids
mail check
- not allow Top-Level Domain
- not support unicode
isDate(String, String) - Static method in class me.saro.kit.Valids
check date validation
isMail(String, int) - Static method in class me.saro.kit.Valids
mail check
- not allow Top-Level Domain
- not support unicode cautious:
this function not requirements rfc spec
- https://tools.ietf.org/html/rfc5321
- https://tools.ietf.org/html/rfc5322 For example
rfc valid : abc@abc
isMail not valid : abc@abc (Top-Level Domain) rfc5 valid : abc@saro.me
isMail valid : abc@saro.me
isNotBlank(String...) - Static method in class me.saro.kit.Valids
all parameters is not blank
isNotNull(Object...) - Static method in class me.saro.kit.Valids
all parameters is not null
isStatus2xx() - Method in class me.saro.kit.webs.SimpleWebResult
is status 2xx
isStatus3xx() - Method in class me.saro.kit.webs.SimpleWebResult
is status 3xx
isStatus4xx() - Method in class me.saro.kit.webs.SimpleWebResult
is status 4xx
isStatus5xx() - Method in class me.saro.kit.webs.SimpleWebResult
is status 5xx
isSuccess() - Method in class me.saro.kit.webs.SimpleWebResult
is status 2xx + have not exception

K

kill(Thread) - Static method in class me.saro.kit.Threads
kill thread without exception

L

lastNext(String, String) - Static method in class me.saro.kit.Texts
return next last token
lastPrev(String, String) - Static method in class me.saro.kit.Texts
return last prev token
lines(File, String, ThrowableFunction<Stream<String>, R>) - Static method in class me.saro.kit.Files
text file to lines in the process function
lines(InputStream, String, ThrowableFunction<Stream<String>, R>) - Static method in class me.saro.kit.Streams
input stream to lines in the process function
link(InputStream, OutputStream) - Static method in class me.saro.kit.Streams
link input stream to output stream
list(File) - Static method in class me.saro.kit.Files
list in the directory
Lists - Class in me.saro.kit
list util
Lists() - Constructor for class me.saro.kit.Lists
 
ltrim(String, char) - Static method in class me.saro.kit.Texts
left trim text

M

MD5 - me.saro.kit.hashs.HashAlgorithm
MD5 : not recommend
me.saro.kit - package me.saro.kit
 
me.saro.kit.bytes - package me.saro.kit.bytes
 
me.saro.kit.crypts - package me.saro.kit.crypts
 
me.saro.kit.dates - package me.saro.kit.dates
 
me.saro.kit.functions - package me.saro.kit.functions
 
me.saro.kit.hashs - package me.saro.kit.hashs
 
me.saro.kit.webs - package me.saro.kit.webs
 

N

next(String, String) - Static method in class me.saro.kit.Texts
return next token
norNumber(String) - Static method in class me.saro.kit.Numbers
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.kit.dates.ConstDateTime
new instant DateFormat with Calendar.getInstance()
Numbers - Class in me.saro.kit
number util
Numbers() - Constructor for class me.saro.kit.Numbers
 
nvl(String...) - Static method in class me.saro.kit.Texts
null value logic

O

onlyDate() - Method in class me.saro.kit.dates.ConstDateTime
remove hh MM ss

P

parse(long) - Static method in class me.saro.kit.dates.ConstDateTime
timeInMillis to DateFormat
parse(String, String) - Static method in class me.saro.kit.dates.ConstDateTime
String date to DateFormat
parseByte(String) - Static method in class me.saro.kit.bytes.Bytes
 
parseCalendar(String, String) - Static method in class me.saro.kit.dates.Dates
 
parseDate(String, String) - Static method in class me.saro.kit.dates.Dates
 
parseDouble(String) - Static method in class me.saro.kit.Numbers
String to double
parseLocalDate(String, String) - Static method in class me.saro.kit.dates.Dates
 
parseLocalDateTime(String, String) - Static method in class me.saro.kit.dates.Dates
 
parseLocalTime(String, String) - Static method in class me.saro.kit.dates.Dates
 
parseLong(String) - Static method in class me.saro.kit.Numbers
String to long
parseZonedDateTime(String, String) - Static method in class me.saro.kit.dates.Dates
 
parseZonedDateTime(String, String, ZoneId) - Static method in class me.saro.kit.dates.Dates
 
patch(String) - Static method in interface me.saro.kit.webs.SimpleWeb
create patch method Web
plusDates(int) - Method in class me.saro.kit.dates.ConstDateTime
return plus dates
plusHours(int) - Method in class me.saro.kit.dates.ConstDateTime
return plus hours
plusMilliseconds(int) - Method in class me.saro.kit.dates.ConstDateTime
return plus milliseconds
plusMinutes(int) - Method in class me.saro.kit.dates.ConstDateTime
return plus minutes
plusMonths(int) - Method in class me.saro.kit.dates.ConstDateTime
return plus month
plusYears(int) - Method in class me.saro.kit.dates.ConstDateTime
return plus year
post(String) - Static method in interface me.saro.kit.webs.SimpleWeb
create post method Web
prev(String, String) - Static method in class me.saro.kit.Texts
return prev token
Primitive - Class in me.saro.kit
primitive object util
Primitive() - Constructor for class me.saro.kit.Primitive
 
put(String) - Static method in interface me.saro.kit.webs.SimpleWeb
create put method Web

R

random(long, long) - Static method in class me.saro.kit.Texts
get random
readRawResultStream(ThrowableConsumer<InputStream>) - Method in interface me.saro.kit.webs.SimpleWeb
readRawResultStream
remainDaysUntilLastDayOfMonth() - Method in class me.saro.kit.dates.ConstDateTime
Days remaining until last day of month
ex) 2019-12-30 -> 1
ex) 2019-12-31 -> 0
remove(ID) - Method in class me.saro.kit.CacheStore
remove
reverse(byte[]) - Static method in class me.saro.kit.bytes.Bytes
reverse byte
reverse(byte[], boolean) - Static method in class me.saro.kit.bytes.Bytes
reverse
reverse(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
reverse byte offset to length
reverse(byte[], int, int, boolean) - Static method in class me.saro.kit.bytes.Bytes
reverse
reverse(byte[], int, int, int) - Static method in class me.saro.kit.bytes.Bytes
reverse byte offset to (length unit) * arrayLength
rtrim(String, char) - Static method in class me.saro.kit.Texts
left trim text
run() - Method in interface me.saro.kit.functions.ThrowableRunnable
 
runtime(ThrowableRunnable) - Static method in class me.saro.kit.Exceptions
It catches "Exception" and converts it to "RuntimeException" and throws it.
runtime(ThrowableSupplier<R>) - Static method in class me.saro.kit.Exceptions
It catches "Exception" and converts it to "RuntimeException" and throws it.

S

setBody(T) - Method in class me.saro.kit.webs.SimpleWebResult
 
setConnectTimeout(int) - Method in interface me.saro.kit.webs.SimpleWeb
Connect Timeout
setConnectTimeout(int) - Method in class me.saro.kit.webs.SimpleWebImpl
Connect Timeout
setContentType(String) - Method in interface me.saro.kit.webs.SimpleWeb
set header ContentType
setContentTypeApplicationJson() - Method in interface me.saro.kit.webs.SimpleWeb
ContentType application/json
setErrorBody(String) - Method in class me.saro.kit.webs.SimpleWebResult
 
setException(Exception) - Method in class me.saro.kit.webs.SimpleWebResult
 
setHeader(String, String) - Method in interface me.saro.kit.webs.SimpleWeb
set header
setHeader(String, String) - Method in class me.saro.kit.webs.SimpleWebImpl
set header
setHeaders(Map<String, List<String>>) - Method in class me.saro.kit.webs.SimpleWebResult
 
setIgnoreCertificate(boolean) - Method in interface me.saro.kit.webs.SimpleWeb
ignore https certificate
this method not recommend
ignore certificate is defenseless the MITM(man-in-the-middle attack)
setIgnoreCertificate(boolean) - Method in class me.saro.kit.webs.SimpleWebImpl
ignore https certificate
this method not recommend
ignore certificate is defenseless the MITM(man-in-the-middle attack)
setReadTimeout(int) - Method in interface me.saro.kit.webs.SimpleWeb
Read Timeout
setReadTimeout(int) - Method in class me.saro.kit.webs.SimpleWebImpl
Read Timeout
setRequestCharset(String) - Method in interface me.saro.kit.webs.SimpleWeb
set request Charset
setRequestCharset(String) - Method in class me.saro.kit.webs.SimpleWebImpl
set request Charset
setResponseCharset(String) - Method in interface me.saro.kit.webs.SimpleWeb
set response charset
setResponseCharset(String) - Method in class me.saro.kit.webs.SimpleWebImpl
set response charset
setStatus(int) - Method in class me.saro.kit.webs.SimpleWebResult
 
SHA_224 - me.saro.kit.hashs.HashAlgorithm
SHA 2 : 224
SHA_256 - me.saro.kit.hashs.HashAlgorithm
SHA 2 : 256
SHA_384 - me.saro.kit.hashs.HashAlgorithm
SHA 2 : 384
SHA_512 - me.saro.kit.hashs.HashAlgorithm
SHA 2 : 512
SHA_512_224 - me.saro.kit.hashs.HashAlgorithm
SHA 2 : 512/224
SHA_512_256 - me.saro.kit.hashs.HashAlgorithm
SHA 2 : 512/256
SHA1 - me.saro.kit.hashs.HashAlgorithm
SHA 1 : not recommend
SHA3_224 - me.saro.kit.hashs.HashAlgorithm
SHA 3 : 224
SHA3_256 - me.saro.kit.hashs.HashAlgorithm
SHA 3 : 256
SHA3_384 - me.saro.kit.hashs.HashAlgorithm
SHA 3 : 384
SHA3_512 - me.saro.kit.hashs.HashAlgorithm
SHA 3 : 512
SimpleCrypt - Interface in me.saro.kit.crypts
Crypt
SimpleWeb - Interface in me.saro.kit.webs
Web Client
SimpleWebIgnoreCertificate - Class in me.saro.kit.webs
Web Ignore Certificate
SimpleWebImpl - Class in me.saro.kit.webs
Web Client Builder
SimpleWebImpl(String, String) - Constructor for class me.saro.kit.webs.SimpleWebImpl
private constructor
SimpleWebResult<T> - Class in me.saro.kit.webs
web result
split(String, char) - Static method in class me.saro.kit.Texts
text split
ex) "abc,abc,,,"
String.split : {"abc", "abc"}
Texts.split : {"abc", "abc", "", "", ""}
Streams - Class in me.saro.kit
stream util
Streams() - Constructor for class me.saro.kit.Streams
 

T

test(T) - Method in interface me.saro.kit.functions.ThrowablePredicate
 
Texts - Class in me.saro.kit
text util
Texts() - Constructor for class me.saro.kit.Texts
 
Threads - Class in me.saro.kit
thread util
Threads() - Constructor for class me.saro.kit.Threads
 
ThrowableBiConsumer<T,​U> - Interface in me.saro.kit.functions
Throwable BiConsumer
ThrowableBiFunction<T,​U,​R> - Interface in me.saro.kit.functions
Throwable BiFunction
ThrowableConsumer<T> - Interface in me.saro.kit.functions
Throwable Consumer
ThrowableFunction<T,​R> - Interface in me.saro.kit.functions
Throwable Function
ThrowablePredicate<T> - Interface in me.saro.kit.functions
Throwable Predicate
ThrowableRunnable - Interface in me.saro.kit.functions
Throwable Runnable
ThrowableSupplier<R> - Interface in me.saro.kit.functions
Throwable Supplier
ThrowableTriConsumer<T,​U,​V> - Interface in me.saro.kit.functions
Throwable TriConsumer
ThrowableTriFunction<T,​U,​V,​R> - Interface in me.saro.kit.functions
Throwable TriFunction
timezone(TimeZone) - Method in class me.saro.kit.dates.ConstDateTime
 
to(File, File, boolean) - Method in interface me.saro.kit.crypts.SimpleCrypt
input file -> (en/de)crypt -> output file
to(InputStream, OutputStream) - Method in interface me.saro.kit.crypts.SimpleCrypt
input -> (en/de)crypt -> output
toBase64(byte[]) - Method in interface me.saro.kit.crypts.SimpleCrypt
to base64 string
input bytes -> (en/de)crypt -> output base64 string
toBase64(byte[], int, int) - Method in interface me.saro.kit.crypts.SimpleCrypt
to base64 string
input bytes -> (en/de)crypt -> output base64 string
toBase64ByBase64(String) - Method in interface me.saro.kit.crypts.SimpleCrypt
to base64 string
input base64 string -> (en/de)crypt -> output base64 string
toBase64ByHex(String) - Method in interface me.saro.kit.crypts.SimpleCrypt
to base64 string
input hex string -> (en/de)crypt -> output base64 string
toBasicFileAttributes(File) - Static method in class me.saro.kit.Files
get file infomation
toBytes() - Method in class me.saro.kit.bytes.BytesWriter
 
toBytes(byte[]) - Method in interface me.saro.kit.crypts.SimpleCrypt
to byte
input bytes -> (en/de)crypt -> output bytes
toBytes(byte[], int, int) - Method in interface me.saro.kit.crypts.SimpleCrypt
to byte
input bytes -> (en/de)crypt -> output bytes
toBytes(double) - Static method in class me.saro.kit.bytes.Bytes
double to bytes
toBytes(double[]) - Static method in class me.saro.kit.bytes.Bytes
double[] to bytes
toBytes(double[], int, int) - Static method in class me.saro.kit.bytes.Bytes
double[] to bytes
toBytes(float) - Static method in class me.saro.kit.bytes.Bytes
float to bytes
toBytes(float[]) - Static method in class me.saro.kit.bytes.Bytes
float[] to bytes
toBytes(float[], int, int) - Static method in class me.saro.kit.bytes.Bytes
float[] to bytes
toBytes(int) - Static method in class me.saro.kit.bytes.Bytes
int to bytes
toBytes(int[]) - Static method in class me.saro.kit.bytes.Bytes
int[] to bytes
toBytes(int[], int, int) - Static method in class me.saro.kit.bytes.Bytes
int[] to bytes
toBytes(long) - Static method in class me.saro.kit.bytes.Bytes
long to bytes
toBytes(long[]) - Static method in class me.saro.kit.bytes.Bytes
long[] to bytes
toBytes(long[], int, int) - Static method in class me.saro.kit.bytes.Bytes
long[] to bytes
toBytes(short) - Static method in class me.saro.kit.bytes.Bytes
short to bytes
toBytes(short[]) - Static method in class me.saro.kit.bytes.Bytes
short[] to bytes
toBytes(short[], int, int) - Static method in class me.saro.kit.bytes.Bytes
short[] to bytes
toBytesByBase64(String) - Method in interface me.saro.kit.crypts.SimpleCrypt
to byte
input base64 string -> (en/de)crypt -> output bytes
toBytesByHex(String) - Static method in class me.saro.kit.bytes.Bytes
to bytes by hex string
toBytesByHex(String) - Method in interface me.saro.kit.crypts.SimpleCrypt
to byte
input hex string -> (en/de)crypt -> output bytes
toCalendar() - Method in class me.saro.kit.dates.ConstDateTime
toCalendar
toCalendar(LocalDate) - Static method in class me.saro.kit.dates.Dates
 
toCalendar(LocalDateTime) - Static method in class me.saro.kit.dates.Dates
 
toCalendar(LocalTime) - Static method in class me.saro.kit.dates.Dates
 
toCalendar(ZonedDateTime) - Static method in class me.saro.kit.dates.Dates
 
toCalendar(Date) - Static method in class me.saro.kit.dates.Dates
 
toCustom(ThrowableFunction<InputStream, R>) - Method in interface me.saro.kit.webs.SimpleWeb
to Custom result
toCustom(SimpleWebResult<R>, ThrowableFunction<InputStream, R>) - Method in interface me.saro.kit.webs.SimpleWeb
to Custom result
toCustom(SimpleWebResult<R>, ThrowableFunction<InputStream, R>) - Method in class me.saro.kit.webs.SimpleWebImpl
to Custom result
toDate() - Method in class me.saro.kit.dates.ConstDateTime
to Date
toDouble(byte[]) - Static method in class me.saro.kit.bytes.Bytes
bytes to double
toDouble(byte[], int) - Static method in class me.saro.kit.bytes.Bytes
bytes to double
toDoubleArray(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to double[]
toDoubleArray(List<Double>) - Static method in class me.saro.kit.Primitive
List<Double> to double[]
toDoubleList(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to double list
toFilenameExtension(File) - Static method in class me.saro.kit.Files
to file name extension
toFilenameExtension(String) - Static method in class me.saro.kit.Files
to file name extension
toFloat(byte[]) - Static method in class me.saro.kit.bytes.Bytes
bytes to float
toFloat(byte[], int) - Static method in class me.saro.kit.bytes.Bytes
bytes to float
toFloatArray(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to float[]
toFloatArray(List<Float>) - Static method in class me.saro.kit.Primitive
List<Float> to float[]
toFloatList(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to float list
toFormatter(String) - Static method in class me.saro.kit.dates.Dates
 
toHash(HashAlgorithm, byte[]) - Static method in class me.saro.kit.hashs.Hashs
to Hash
toHash(HashAlgorithm, String) - Static method in class me.saro.kit.hashs.Hashs
to Hash
charset is UTF-8
toHash(HashAlgorithm, String, String) - Static method in class me.saro.kit.hashs.Hashs
to Hash
toHashBase64(HashAlgorithm, String) - Static method in class me.saro.kit.hashs.Hashs
toHashBase64
toHashBase64(HashAlgorithm, String, String) - Static method in class me.saro.kit.hashs.Hashs
toHashBase64
toHashHex(HashAlgorithm, String) - Static method in class me.saro.kit.hashs.Hashs
toHashHex
toHashHex(HashAlgorithm, String, String) - Static method in class me.saro.kit.hashs.Hashs
toHashHex
toHex(byte[]) - Static method in class me.saro.kit.bytes.Bytes
bytes to hex
toHex(byte[]) - Method in interface me.saro.kit.crypts.SimpleCrypt
to hex string
input bytes -> (en/de)crypt -> output hex string
toHex(byte[], int, int) - Method in interface me.saro.kit.crypts.SimpleCrypt
to hex string
input bytes -> (en/de)crypt -> output hex string
toHexByBase64(String) - Method in interface me.saro.kit.crypts.SimpleCrypt
to hex string
input base64 string -> (en/de)crypt -> output hex string
toHexByHex(String) - Method in interface me.saro.kit.crypts.SimpleCrypt
to hex string
input hex string -> (en/de)crypt -> output hex string
toInt(byte[]) - Static method in class me.saro.kit.bytes.Bytes
bytes to int
toInt(byte[], int) - Static method in class me.saro.kit.bytes.Bytes
bytes to int
toIntArray(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to int[]
toIntArray(List<Integer>) - Static method in class me.saro.kit.Primitive
List<Integer> to int[]
toIntegerList(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to integer list
toISO8601() - Method in class me.saro.kit.dates.ConstDateTime
to ISO8601
toLocalDate(Calendar) - Static method in class me.saro.kit.dates.Dates
 
toLocalDateTime(Calendar) - Static method in class me.saro.kit.dates.Dates
 
toLocalTime(Calendar) - Static method in class me.saro.kit.dates.Dates
 
toLong(byte[]) - Static method in class me.saro.kit.bytes.Bytes
bytes to long
toLong(byte[], int) - Static method in class me.saro.kit.bytes.Bytes
bytes to long
toLongArray(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to long[]
toLongArray(List<Long>) - Static method in class me.saro.kit.Primitive
List<Long> to long[]
toLongList(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to long list
toPrimitive(Byte[]) - Static method in class me.saro.kit.Primitive
List<Byte> to byte[]
toPrimitive(Double[]) - Static method in class me.saro.kit.Primitive
Double[] to double[]
toPrimitive(Float[]) - Static method in class me.saro.kit.Primitive
Float[] to float[]
toPrimitive(Integer[]) - Static method in class me.saro.kit.Primitive
Integer[] to int[]
toPrimitive(Long[]) - Static method in class me.saro.kit.Primitive
Long[] to long[]
toPrimitive(Short[]) - Static method in class me.saro.kit.Primitive
Short[] to short[]
toShort(byte[]) - Static method in class me.saro.kit.bytes.Bytes
bytes to short
toShort(byte[], int) - Static method in class me.saro.kit.bytes.Bytes
bytes to short
toShortArray(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to short[]
toShortArray(List<Short>) - Static method in class me.saro.kit.Primitive
List<Short> to short[]
toShortList(byte[], int, int) - Static method in class me.saro.kit.bytes.Bytes
bytes to short list
toSimpleDateFormat(String) - Static method in class me.saro.kit.dates.Dates
 
toStream(Iterable<T>, boolean) - Static method in class me.saro.kit.Streams
iterable to stream
toStream(Enumeration<T>, boolean) - Static method in class me.saro.kit.Streams
enumeration to stream
toString() - Method in class me.saro.kit.bytes.BytesWriter
 
toString() - Method in class me.saro.kit.dates.ConstDateTime
to ISO8601 yyyy-MM-dd'T'HH:mm:ssZ[+HH:mm]
toString() - Method in class me.saro.kit.webs.SimpleWebResult
 
toString(byte[], int, int, String) - Static method in class me.saro.kit.bytes.Bytes
 
toString(byte[], String) - Static method in class me.saro.kit.bytes.Bytes
 
toString(InputStream, String) - Static method in class me.saro.kit.Streams
input stream to string
toString(Exception) - Static method in class me.saro.kit.Exceptions
to String the exception with stackTrace
toString(String) - Method in class me.saro.kit.dates.ConstDateTime
DateFormat to String
same format(String format)
toUnPrimitive(byte[]) - Static method in class me.saro.kit.Primitive
byte[] to Byte[]
toUnPrimitive(double[]) - Static method in class me.saro.kit.Primitive
double[] to Double[]
toUnPrimitive(float[]) - Static method in class me.saro.kit.Primitive
float[] to Float[]
toUnPrimitive(int[]) - Static method in class me.saro.kit.Primitive
int[] to Integer[]
toUnPrimitive(long[]) - Static method in class me.saro.kit.Primitive
long[] to Long[]
toUnPrimitive(short[]) - Static method in class me.saro.kit.Primitive
short[] to Short[]
toZonedDateTime(Calendar) - Static method in class me.saro.kit.dates.Dates
 

V

valid(String, String) - Static method in class me.saro.kit.dates.ConstDateTime
date validator
validFilenameExtension(File, boolean, String...) - Static method in class me.saro.kit.Files
valid filename extension
Valids - Class in me.saro.kit
valid util
value() - Method in enum me.saro.kit.hashs.HashAlgorithm
get value
valueOf(String) - Static method in enum me.saro.kit.hashs.HashAlgorithm
Returns the enum constant of this type with the specified name.
values() - Static method in enum me.saro.kit.hashs.HashAlgorithm
Returns an array containing the constants of this enum type, in the order they are declared.

W

withDayOfMonth(int) - Method in class me.saro.kit.dates.ConstDateTime
return with dayOfMonth
withHours(int) - Method in class me.saro.kit.dates.ConstDateTime
return with hours
withMilliseconds(int) - Method in class me.saro.kit.dates.ConstDateTime
WARNING : is not TimeInMillis
return with milliseconds
withMinutes(int) - Method in class me.saro.kit.dates.ConstDateTime
return with minutes
withMonth(int) - Method in class me.saro.kit.dates.ConstDateTime
return with month
withSeconds(int) - Method in class me.saro.kit.dates.ConstDateTime
return with seconds
withTimeInMillis(long) - Method in class me.saro.kit.dates.ConstDateTime
WARNING : is not Milliseconds
return with timeInMillis
withYear(int) - Method in class me.saro.kit.dates.ConstDateTime
return with year
wrap(ThrowableBiConsumer<T, U>) - Static method in interface me.saro.kit.functions.ThrowableBiConsumer
throws Exception lambda to throws RuntimeException lambda
wrap(ThrowableBiFunction<T, U, R>) - Static method in interface me.saro.kit.functions.ThrowableBiFunction
throws Exception lambda to throws RuntimeException lambda
wrap(ThrowableConsumer<T>) - Static method in interface me.saro.kit.functions.ThrowableConsumer
throws Exception lambda to throws RuntimeException lambda
wrap(ThrowableFunction<T, R>) - Static method in interface me.saro.kit.functions.ThrowableFunction
throws Exception lambda to throws RuntimeException lambda
wrap(ThrowablePredicate<T>) - Static method in interface me.saro.kit.functions.ThrowablePredicate
throws Exception lambda to throws RuntimeException lambda
wrap(ThrowableRunnable) - Static method in interface me.saro.kit.functions.ThrowableRunnable
throws Exception lambda to throws RuntimeException lambda
wrap(ThrowableSupplier<R>) - Static method in interface me.saro.kit.functions.ThrowableSupplier
throws Exception lambda to throws RuntimeException lambda
writeBody(byte[]) - Method in interface me.saro.kit.webs.SimpleWeb
write body binary
writeBody(byte[]) - Method in class me.saro.kit.webs.SimpleWebImpl
write body binary
writeBody(String) - Method in interface me.saro.kit.webs.SimpleWeb
write Body text
writeBodyParameter(String, String) - Method in interface me.saro.kit.webs.SimpleWeb
writeBodyParameter
WARNING : is not json type

web
.writeBodyParameter("aa", "11")
.writeBodyParameter("bb", "22");
equals
aa=11&bb=22
writeBodyParameter(String, String) - Method in class me.saro.kit.webs.SimpleWebImpl
writeBodyParameter
WARNING : is not json type

web
.writeBodyParameter("aa", "11")
.writeBodyParameter("bb", "22");
equals
aa=11&bb=22

Z

zerofill(int, int) - Static method in class me.saro.kit.Numbers
zerofill
zerofill(long, int) - Static method in class me.saro.kit.Numbers
zerofill
zerofill(String, int) - Static method in class me.saro.kit.Numbers
zerofill
A B C D E F G H I K L M N O P R S T V W Z 
All Classes All Packages