| Package | Description |
|---|---|
| net.sf.mmm.util.lang.api |
Provides the API for utilities of general purpose.
|
| net.sf.mmm.util.lang.base |
Contains the basic implementation of the Util Lang API.
|
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Formatter.format(V value,
Appendable buffer)
|
void |
LocalizableFormatter.format(V value,
Appendable buffer,
Locale locale)
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractFormatter.format(V value,
Appendable buffer)
|
void |
AbstractLocalizableFormatter.format(V value,
Appendable buffer,
Locale locale)
|
| Modifier and Type | Method and Description |
|---|---|
void |
ComposedNlsMessage.getLocalizedMessage(Locale locale,
NlsTemplateResolver resolver,
Appendable buffer)
This method writes the localized message to the given
buffer. |
| Modifier and Type | Method and Description |
|---|---|
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<? super 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<? super 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<? super 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<? super 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<? super 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<? super 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. |
| Modifier and Type | Method and Description |
|---|---|
protected void |
ReflectionUtilImpl.findClassNames(String packageName,
boolean includeSubPackages,
Set<String> classSet,
Filter<? super 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.
|
| Constructor and Description |
|---|
ManifestLoader()
The constructor.
|
ManifestLoader(ClassLoader classloader)
The constructor.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
OutputStream |
AbstractDataResource.openOutputStream()
This method opens an output-stream in order to write data to the resource.
|
| Modifier and Type | Method and Description |
|---|---|
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–2015 mmm-Team. All rights reserved.