Uses of Class
net.sf.mmm.util.io.api.RuntimeIoException

Packages that use RuntimeIoException
net.sf.mmm.util.file.api Provides the API for utilities that help to deal with Files. 
net.sf.mmm.util.io.api Provides the API for utilities that help to read and write data, process bytes, etc. 
net.sf.mmm.util.io.base Contains public implementations that help to read and write data, process bytes, etc. 
net.sf.mmm.util.nls.api Provides the API for the native language support (NLS). 
net.sf.mmm.util.nls.base Contains the basis for implementations of the native language support (NLS) API. 
net.sf.mmm.util.reflect.api Provides the API for utilities that help to deal with reflection. 
net.sf.mmm.util.reflect.base Contains the base-implementations of the Reflection-Util API
net.sf.mmm.util.resource.api Provides the API for utilities that help to load resources from arbitrary sources. 
net.sf.mmm.util.resource.base Contains the base implementation of the resource-API
net.sf.mmm.util.xml.api Provides the API of utilities that help to deal with XML. 
 

Uses of RuntimeIoException in net.sf.mmm.util.file.api
 

Subclasses of RuntimeIoException in net.sf.mmm.util.file.api
 class FileAlreadyExistsException
          A FileAlreadyExistsException is thrown if a file or directory already exists but was NOT expected.
 class FileCreationFailedException
          A FileCreationFailedException is thrown if a file or directory should be created but the creation failed.
 class FileDeletionFailedException
          A FileDeletionFailedException is thrown if a file or directory should be deleted but the deletion failed.
 class FileNotExistsException
          A FileNotExistsException is thrown if a file or directory is expected but was NOT found.
 

Methods in net.sf.mmm.util.file.api that throw RuntimeIoException
 void FileUtil.copyFile(File source, File destination)
          This method copies the file given by source to the file given by destination.
 void FileUtil.copyFile(File source, File destination, boolean keepFlags)
          This method copies the file given by source to the file given by destination.
 void FileUtil.copyRecursive(File source, File destination, boolean allowOverwrite)
          This method copies the file or directory given by source into the given destination.
 void FileUtil.copyRecursive(File source, File destination, boolean allowOverwrite, FileFilter filter)
          This method copies the file or directory given by source into the given destination.
 int FileUtil.deleteChildren(File directory)
          This method deletes all children of the given directory recursively.
 int FileUtil.deleteRecursive(File path)
          This method deletes the given path.
 

Uses of RuntimeIoException in net.sf.mmm.util.io.api
 

Methods in net.sf.mmm.util.io.api that throw RuntimeIoException
 void StreamUtil.close(OutputStream outputStream)
          This method closes the given outputStream without throwing an IOException.
 void StreamUtil.close(Writer writer)
          This method closes the given writer without throwing an IOException.
 

Uses of RuntimeIoException in net.sf.mmm.util.io.base
 

Methods in net.sf.mmm.util.io.base that throw RuntimeIoException
 AppendableWriter AppendableWriter.append(char c)
          
 AppendableWriter AppendableWriter.append(CharSequence csq)
          
 AppendableWriter AppendableWriter.append(CharSequence csq, int start, int end)
          
 void AppendableWriter.close()
          
 void AppendableWriter.flush()
          
 void AppendableWriter.write(char[] buffer)
          
 void AppendableWriter.write(char[] buffer, int offset, int length)
          
 void AppendableWriter.write(String string)
          
 void AppendableWriter.write(String string, int offset, int length)
          
 

Uses of RuntimeIoException in net.sf.mmm.util.nls.api
 

Methods in net.sf.mmm.util.nls.api that throw RuntimeIoException
 void NlsMessage.getLocalizedMessage(Locale locale, NlsTemplateResolver resolver, Appendable buffer)
          This method writes the localized message to the given buffer.
 

Uses of RuntimeIoException in net.sf.mmm.util.nls.base
 

Methods in net.sf.mmm.util.nls.base that throw RuntimeIoException
 NlsWriter NlsWriter.append(CharSequence csq)
          
 NlsWriter NlsWriter.append(CharSequence csq, int start, int end)
          
 void ComposedNlsMessage.getLocalizedMessage(Locale locale, NlsTemplateResolver resolver, Appendable buffer)
          This method writes the localized message to the given buffer.
 void NlsWriter.print(CharSequence csq)
          This method is the same as NlsWriter.append(CharSequence) or AppendableWriter.write(String).
 void NlsWriter.print(NlsMessage message)
          This method writes an NlsMessage.
 void NlsWriter.println()
          This method writes a newline (line-separator).
 void NlsWriter.println(CharSequence csq)
          This method is like NlsWriter.append(CharSequence) or AppendableWriter.write(String) but additionally adds a newline (line-separator) after the message.
 void NlsWriter.printlnRaw(CharSequence text)
          This method writes the raw text without internationalization.
 void NlsWriter.printRaw(CharSequence text)
          This method writes the raw text without internationalization.
 

Uses of RuntimeIoException in net.sf.mmm.util.reflect.api
 

Methods in net.sf.mmm.util.reflect.api that throw RuntimeIoException
 Set<String> ReflectionUtil.findClassNames(String packageName, boolean includeSubPackages)
          This method finds all classes that are located in the package identified by the given packageName.
 Set<String> ReflectionUtil.findClassNames(String packageName, boolean includeSubPackages, Filter<String> filter)
          This method finds all classes that are located in the package identified by the given packageName.
 Set<String> ReflectionUtil.findClassNames(String packageName, boolean includeSubPackages, Filter<String> filter, ClassLoader classLoader)
          This method finds all classes that are located in the package identified by the given packageName.
 void ReflectionUtil.findClassNames(String packageName, boolean includeSubPackages, Set<String> classSet)
          This method finds all classes that are located in the package identified by the given packageName.
 Set<String> ReflectionUtil.findResourceNames(String packageName, boolean includeSubPackages, Filter<String> filter)
          This method finds all resources that are located in the package identified by the given packageName.
 Set<String> ReflectionUtil.findResourceNames(String packageName, boolean includeSubPackages, Filter<String> filter, ClassLoader classLoader)
          This method finds all resources that are located in the package identified by the given packageName.
 Set<DataResource> ReflectionUtil.findResources(String absoluteClasspath)
          This method finds all resources that match to the given absoluteClasspath.
 Set<DataResource> ReflectionUtil.findResources(String packageName, boolean includeSubPackages, Filter<String> filter)
          This method finds all resources that are located in the package identified by the given packageName.
 Set<DataResource> ReflectionUtil.findResources(String packageName, boolean includeSubPackages, Filter<String> filter, ClassLoader classLoader)
          This method finds all resources that are located in the package identified by the given packageName.
 void ReflectionUtil.toString(Type type, Appendable appendable, Visitor<Class<?>> classFormatter)
          This method gets the string representation of a Type.
 

Uses of RuntimeIoException in net.sf.mmm.util.reflect.base
 

Methods in net.sf.mmm.util.reflect.base that throw RuntimeIoException
protected  void ReflectionUtilImpl.findClassNames(String packageName, boolean includeSubPackages, Set<String> classSet, Filter<String> filter, ClassLoader classLoader)
           
 Set<DataResource> ReflectionUtilImpl.findResources(String absoluteClasspath)
          This method finds all resources that match to the given absoluteClasspath.
 void ReflectionUtilImpl.visitResourceNames(String packageName, boolean includeSubPackages, ClassLoader classLoader, ResourceVisitor visitor)
          This method does the actual magic to locate resources on the classpath.
 

Constructors in net.sf.mmm.util.reflect.base that throw RuntimeIoException
ManifestLoader()
          The constructor.
ManifestLoader(ClassLoader classloader)
          The constructor.
 

Uses of RuntimeIoException in net.sf.mmm.util.resource.api
 

Methods in net.sf.mmm.util.resource.api that throw RuntimeIoException
 OutputStream DataResource.openOutputStream()
          This method opens an output-stream in order to write data to the resource.
 InputStream DataResource.openStream()
          This method opens this resource for reading.
 

Uses of RuntimeIoException in net.sf.mmm.util.resource.base
 

Methods in net.sf.mmm.util.resource.base that throw RuntimeIoException
 OutputStream AbstractDataResource.openOutputStream()
          This method opens an output-stream in order to write data to the resource.
 

Uses of RuntimeIoException in net.sf.mmm.util.xml.api
 

Methods in net.sf.mmm.util.xml.api that throw RuntimeIoException
 Reader XmlUtil.createXmlReader(InputStream inputStream)
          This method creates a Reader from the given inputStream that uses the encoding specified in the (potential) XML header of the InputStreams content.
 Reader XmlUtil.createXmlReader(InputStream inputStream, Charset defaultCharset)
          This method creates a Reader from the given inputStream that uses the encoding specified in the (potential) XML header of the InputStreams content.
 void XmlUtil.escapeXml(String string, Writer writer, boolean escapeQuotations)
          This method writes the given string to the writer while escaping special characters for XML (or HTML, etc.).
 



Copyright © 2001-2010 mmm-Team. All Rights Reserved.