Uses of Class
org.omnaest.utils.structure.container.ByteArrayContainer

Packages that use ByteArrayContainer
org.omnaest.utils.store   
org.omnaest.utils.structure.container   
 

Uses of ByteArrayContainer in org.omnaest.utils.store
 

Methods in org.omnaest.utils.store that return ByteArrayContainer
 ByteArrayContainer NestedDirectoryToByteArrayContainerListAdapter.get(int index)
           
 ByteArrayContainer NestedDirectoryToByteArrayContainerListAdapter.remove(int index)
           
 ByteArrayContainer NestedDirectoryToByteArrayContainerListAdapter.set(int index, ByteArrayContainer byteArrayContainer)
           
 

Methods in org.omnaest.utils.store with parameters of type ByteArrayContainer
 boolean NestedDirectoryToByteArrayContainerListAdapter.add(ByteArrayContainer byteArrayContainer)
           
 void NestedDirectoryToByteArrayContainerListAdapter.add(int index, ByteArrayContainer byteArrayContainer)
           
 ByteArrayContainer NestedDirectoryToByteArrayContainerListAdapter.set(int index, ByteArrayContainer byteArrayContainer)
           
 

Uses of ByteArrayContainer in org.omnaest.utils.structure.container
 

Fields in org.omnaest.utils.structure.container with type parameters of type ByteArrayContainer
static Class<? extends ByteArrayContainer> ByteArrayContainer.implementationForByteArrayContainerClass
          Used by the factory method.
 

Methods in org.omnaest.utils.structure.container that return ByteArrayContainer
 ByteArrayContainer ByteArrayContainer.copyFrom(byte[] source)
          Copies the content from a byte array into the container.
 ByteArrayContainer ByteArrayContainer.copyFrom(ByteArrayContainer sourceByteArrayContainer)
          Copies the content from another container into this one.
 ByteArrayContainer ByteArrayContainer.copyFrom(CharSequence charSequence)
          Copies the content of a CharSequence into the ByteArrayContainer using the "utf-8".
 ByteArrayContainer ByteArrayContainer.copyFrom(CharSequence charSequence, String encoding)
          Copies the content of a CharSequence into the ByteArrayContainer.
 ByteArrayContainer ByteArrayContainer.copyFrom(File file)
          Copies the content of the given File into the ByteArrayContainer.
 ByteArrayContainer ByteArrayContainer.copyFrom(InputStream sourceInputStream)
          Copies the content from an InputStream into the ByteArrayContainer without closing the InputStream

If the copy operation fails the content of the ByteArrayContainer is set to invalid.
 ByteArrayContainer ByteArrayContainer.copyFrom(Readable readable)
          Copies the content from a Readable using the "utf-8" encoding
 ByteArrayContainer ByteArrayContainer.copyFrom(Readable readable, String encoding)
          Copies the content from a Readable using the given encoding
 ByteArrayContainer ByteArrayContainer.copyFrom(String string)
          Copies the content of a String into the container.
 ByteArrayContainer ByteArrayContainer.copyFrom(String string, String encoding)
          Copies the content of a String into the ByteArrayContainer.
 ByteArrayContainer ByteArrayContainer.copyFrom(URL url)
          Uses the given URL.openStream() to retrieve data which will be available within the ByteArrayContainer

If the data cannot be resolved completely the isContentInvalid() will return true afterwards.
 ByteArrayContainer ByteArrayContainer.copyFrom(URLConnection urlConnection)
          Similar to copyFrom(URL)
<S extends Serializable>
ByteArrayContainer
ByteArrayContainer.copyFromAsSerialized(S element)
          Serializes any given Serializable element and stores it
static ByteArrayContainer ByteArrayContainer.createNewInstance()
          Creates a new instance of this class.
 ByteArrayContainer ByteArrayContainer.setContent(byte[] content)
           
 ByteArrayContainer ByteArrayContainer.setExceptionHandler(ExceptionHandler exceptionHandler)
           
static ByteArrayContainer ByteArrayContainer.valueOf(ByteArrayContainer byteArrayContainer)
          Returns a new ByteArrayContainer instance mapping the same byte[] array as the given ByteArrayContainer
static ByteArrayContainer ByteArrayContainer.zipFilenameByteArrayContainerMap(Map<String,ByteArrayContainer> byteArrayContainerMap)
          Zipps all ByteArrayContainers of a given map, which contains filenames with corresponding unzipped ByteArrayContainer objects.
static ByteArrayContainer ByteArrayContainer.zipFilenameByteArrayContainerMap(Map<String,ByteArrayContainer> byteArrayContainerMap, ExceptionHandler exceptionHandler)
          Zipps all ByteArrayContainers of a given map, which contains filenames with corresponding unzipped ByteArrayContainer objects.
 

Methods in org.omnaest.utils.structure.container that return types with arguments of type ByteArrayContainer
 Map<String,ByteArrayContainer> ByteArrayContainer.unzip()
          Converts a zip file content into unzipped content.
static Map<String,ByteArrayContainer> ByteArrayContainer.unzipIntoFilenameByteArrayContainerMap(ByteArrayContainer byteArrayContainer)
          Unzipps the given ByteArrayContainer object into a map containing the filenames and unzipped ByteArrayContainer objects for each file.
static Map<String,ByteArrayContainer> ByteArrayContainer.unzipIntoFilenameByteArrayContainerMap(ByteArrayContainer byteArrayContainer, ExceptionHandler exceptionHandler)
          Unzipps the given ByteArrayContainer object into a map containing the filenames and unzipped ByteArrayContainer objects for each file.
 

Methods in org.omnaest.utils.structure.container with parameters of type ByteArrayContainer
 ByteArrayContainer ByteArrayContainer.copyFrom(ByteArrayContainer sourceByteArrayContainer)
          Copies the content from another container into this one.
static Map<String,ByteArrayContainer> ByteArrayContainer.unzipIntoFilenameByteArrayContainerMap(ByteArrayContainer byteArrayContainer)
          Unzipps the given ByteArrayContainer object into a map containing the filenames and unzipped ByteArrayContainer objects for each file.
static Map<String,ByteArrayContainer> ByteArrayContainer.unzipIntoFilenameByteArrayContainerMap(ByteArrayContainer byteArrayContainer, ExceptionHandler exceptionHandler)
          Unzipps the given ByteArrayContainer object into a map containing the filenames and unzipped ByteArrayContainer objects for each file.
static ByteArrayContainer ByteArrayContainer.valueOf(ByteArrayContainer byteArrayContainer)
          Returns a new ByteArrayContainer instance mapping the same byte[] array as the given ByteArrayContainer
 

Method parameters in org.omnaest.utils.structure.container with type arguments of type ByteArrayContainer
static ByteArrayContainer ByteArrayContainer.zipFilenameByteArrayContainerMap(Map<String,ByteArrayContainer> byteArrayContainerMap)
          Zipps all ByteArrayContainers of a given map, which contains filenames with corresponding unzipped ByteArrayContainer objects.
static ByteArrayContainer ByteArrayContainer.zipFilenameByteArrayContainerMap(Map<String,ByteArrayContainer> byteArrayContainerMap, ExceptionHandler exceptionHandler)
          Zipps all ByteArrayContainers of a given map, which contains filenames with corresponding unzipped ByteArrayContainer objects.
 



Copyright © 2013. All Rights Reserved.