Uses of Interface
org.apache.shiro.util.ByteSource
-
Packages that use ByteSource Package Description org.apache.shiro.util -
-
Uses of ByteSource in org.apache.shiro.util
Classes in org.apache.shiro.util that implement ByteSource Modifier and Type Class Description classSimpleByteSourceVery simpleByteSourceimplementation that maintains an internalbyte[]array and uses theHexandBase64codec classes to support thetoHex()andtoBase64()implementations.Methods in org.apache.shiro.util that return ByteSource Modifier and Type Method Description static ByteSourceByteSource.Util. bytes(byte[] bytes)Returns a newByteSourceinstance representing the specified byte array.static ByteSourceByteSource.Util. bytes(char[] chars)Returns a newByteSourceinstance representing the specified character array's bytes.static ByteSourceByteSource.Util. bytes(File file)Returns a newByteSourceinstance representing the specified File's bytes.static ByteSourceByteSource.Util. bytes(InputStream stream)Returns a newByteSourceinstance representing the specified InputStream's bytes.static ByteSourceByteSource.Util. bytes(Object source)Returns aByteSourceinstance representing the specified byte source argument.static ByteSourceByteSource.Util. bytes(String string)Returns a newByteSourceinstance representing the specified string's bytes.static ByteSourceByteSource.Util. bytes(ByteSource source)Returns a newByteSourceinstance representing the specified ByteSource.Methods in org.apache.shiro.util with parameters of type ByteSource Modifier and Type Method Description static ByteSourceByteSource.Util. bytes(ByteSource source)Returns a newByteSourceinstance representing the specified ByteSource.Constructors in org.apache.shiro.util with parameters of type ByteSource Constructor Description SimpleByteSource(ByteSource source)Creates an instance using the sources bytes directly - it does not create a copy of the argument's byte array.
-