Java io.netty.util.internal StringUtil fields, constructors, methods, implement or subclass

Example usage for Java io.netty.util.internal StringUtil fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.util.internal StringUtil.

The text is from its open source code.

Field

Method

booleanisNullOrEmpty(String s)
Determine if a string is null or String#isEmpty() returns true .
StringsimpleClassName(Object o)
The shortcut to #simpleClassName(Class) simpleClassName(o.getClass()) .
StringsimpleClassName(Class clazz)
Generates a simplified name from a Class .
StringtoHexString(byte[] src)
Converts the specified byte array into a hexadecimal value.
TtoHexString(T dst, byte[] src, int offset, int length)
Converts the specified byte array into a hexadecimal value and appends it to the specified buffer.
ListunescapeCsvFields(CharSequence value)
Unescapes the specified escaped CSV fields according to RFC-4180.