Uses of Interface
org.omnaest.utils.events.exception.ExceptionHandler

Packages that use ExceptionHandler
org.omnaest.utils.beans.copier   
org.omnaest.utils.beans.replicator   
org.omnaest.utils.beans.result   
org.omnaest.utils.dispatcher   
org.omnaest.utils.events.exception   
org.omnaest.utils.events.exception.basic   
org.omnaest.utils.proxy   
org.omnaest.utils.structure.container   
org.omnaest.utils.threads.submit   
org.omnaest.utils.xml   
 

Uses of ExceptionHandler in org.omnaest.utils.beans.copier
 

Methods in org.omnaest.utils.beans.copier with parameters of type ExceptionHandler
 PreparedBeanCopier<FROM,TO> PreparedBeanCopier.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 

Uses of ExceptionHandler in org.omnaest.utils.beans.replicator
 

Methods in org.omnaest.utils.beans.replicator with parameters of type ExceptionHandler
 BeanReplicator<FROM,TO> BeanReplicator.setExceptionHandler(ExceptionHandler exceptionHandler)
          The given ExceptionHandler should handle any CopyException and PreparedBeanCopier.NonMatchingPropertyException
 BeanCopier<B> BeanCopier.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 

Uses of ExceptionHandler in org.omnaest.utils.beans.result
 

Methods in org.omnaest.utils.beans.result with parameters of type ExceptionHandler
 Object BeanPropertyAccessor.getPropertyValue(B bean, BeanPropertyAccessor.PropertyAccessType propertyAccessType, ExceptionHandler exceptionHandler)
          Returns the property value for the underlying Java Bean property from the given Java Bean object.
 Object BeanPropertyAccessor.getPropertyValue(B bean, ExceptionHandler exceptionHandler, BeanPropertyAccessor.PropertyAccessType... propertyAccessTypes)
          Similar to BeanPropertyAccessor.getPropertyValue(Object, PropertyAccessType, ExceptionHandler) using all the given BeanPropertyAccessor.PropertyAccessTypes
 Tuple2<Object,Boolean> BeanPropertyAccessor.getPropertyValueAndSuccess(B bean, BeanPropertyAccessor.PropertyAccessType propertyAccessType, ExceptionHandler exceptionHandler)
          Returns the property value for the underlying Java Bean property from the given Java Bean object.
 boolean BeanPropertyAccessor.setPropertyValue(B bean, Object value, BeanPropertyAccessor.PropertyAccessType propertyAccessType, ExceptionHandler exceptionHandler)
          Sets the property value for the underlying Java Bean property for the given Java Bean object using the given BeanPropertyAccessor.PropertyAccessType.
 boolean BeanPropertyAccessor.setPropertyValue(B bean, Object value, ExceptionHandler exceptionHandler, BeanPropertyAccessor.PropertyAccessType... propertyAccessTypes)
          Similar to BeanPropertyAccessor.setPropertyValue(Object, Object, PropertyAccessType, ExceptionHandler) using all given BeanPropertyAccessor.PropertyAccessTypes
 

Uses of ExceptionHandler in org.omnaest.utils.dispatcher
 

Fields in org.omnaest.utils.dispatcher declared as ExceptionHandler
protected  ExceptionHandler DispatcherAbstract.exceptionHandler
           
 

Methods in org.omnaest.utils.dispatcher with parameters of type ExceptionHandler
 ProxyDispatcherFactory<T> ProxyDispatcherFactory.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 DispatcherAbstract<T> DispatcherAbstract.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 

Uses of ExceptionHandler in org.omnaest.utils.events.exception
 

Subinterfaces of ExceptionHandler in org.omnaest.utils.events.exception
 interface ExceptionHandlerSerializable
          ExceptionHandler which implements the Serializable interface
 

Classes in org.omnaest.utils.events.exception that implement ExceptionHandler
protected  class ExceptionHandlerManager.DispatchingExceptionHandler
          ExceptionHandler which dispatches to the ExceptionHandlerManager.exceptionHandlerSet.
protected  class ExceptionHandlerManager.DispatchingExceptionHandlerRethrowingExceptions
          ExceptionHandler which dispatches to the ExceptionHandlerManager.exceptionHandlerSet rethrowing any Exception as RuntimeException
 

Fields in org.omnaest.utils.events.exception declared as ExceptionHandler
protected  ExceptionHandler ExceptionHandlerManager.dispatchingExceptionHandler
           
protected  ExceptionHandler ExceptionHandlerManager.dispatchingExceptionHandlerRethrowingExceptions
           
 

Fields in org.omnaest.utils.events.exception with type parameters of type ExceptionHandler
protected  Set<ExceptionHandler> ExceptionHandlerManager.exceptionHandlerSet
           
 

Methods in org.omnaest.utils.events.exception that return ExceptionHandler
 ExceptionHandler ExceptionHandlerManager.getExceptionHandler()
           
 

Methods in org.omnaest.utils.events.exception with parameters of type ExceptionHandler
 ExceptionHandlerManager.ExceptionHandlerRegistration ExceptionHandlerManager.ExceptionHandlerRegistration.registerExceptionHandler(ExceptionHandler exceptionHandler)
          Registers an ExceptionHandler
 ExceptionHandlerManager.ExceptionHandlerRegistration ExceptionHandlerManager.ExceptionHandlerRegistration.unregisterExceptionHandler(ExceptionHandler exceptionHandler)
          Unregisters a given ExceptionHandler
 

Uses of ExceptionHandler in org.omnaest.utils.events.exception.basic
 

Classes in org.omnaest.utils.events.exception.basic that implement ExceptionHandler
 class ExceptionHandlerBooleanState
          ExceptionHandlerSerializable holding an internal state flag.
 class ExceptionHandlerDelegate
          ExceptionHandler which delegates to another instance
 class ExceptionHandlerEPrintStackTrace
          Simple ExceptionHandler which does call Throwable.printStackTrace()
 class ExceptionHandlerIgnoring
          Simple ExceptionHandler which does nothing
 class ExceptionHandlerLogging
          Simple ExceptionHandler which logs as ERROR using a slf4j Logger instance
 class ExceptionHandlerRethrowingAsRuntimeException
          Simple ExceptionHandler which does rethrow the given Exception as cause of a new RuntimeException
 

Methods in org.omnaest.utils.events.exception.basic with parameters of type ExceptionHandler
 void ExceptionHandlerDelegate.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 

Constructors in org.omnaest.utils.events.exception.basic with parameters of type ExceptionHandler
ExceptionHandlerDelegate(ExceptionHandler exceptionHandler)
           
 

Uses of ExceptionHandler in org.omnaest.utils.proxy
 

Methods in org.omnaest.utils.proxy with parameters of type ExceptionHandler
static
<E> E
StubCreator.newStubInstance(Class<? extends E> clazz, Class<?>[] interfaces, net.sf.cglib.proxy.MethodInterceptor methodInterceptor, ExceptionHandler exceptionHandler)
          Returns a new proxy stub for the given class or interface but takes additional interfaces.
static
<E> E
StubCreator.newStubInstance(Class<? extends E> clazz, Class<?>[] interfaces, MethodInvocationHandler methodInvocationHandler, ExceptionHandler exceptionHandler)
          Same as StubCreator.newStubInstance(Class, Class[], MethodInterceptor) but uses a MethodInvocationHandler instead.
 

Constructors in org.omnaest.utils.proxy with parameters of type ExceptionHandler
StubCreator(Class<? extends E> type, Class<?>[] interfaces, ExceptionHandler exceptionHandler)
           
StubCreator(Class<? extends E> type, ExceptionHandler exceptionHandler)
           
 

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

Methods in org.omnaest.utils.structure.container with parameters of type ExceptionHandler
 ByteArrayContainer ByteArrayContainer.setExceptionHandler(ExceptionHandler exceptionHandler)
           
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.zipFilenameByteArrayContainerMap(Map<String,ByteArrayContainer> byteArrayContainerMap, ExceptionHandler exceptionHandler)
          Zipps all ByteArrayContainers of a given map, which contains filenames with corresponding unzipped ByteArrayContainer objects.
 

Uses of ExceptionHandler in org.omnaest.utils.threads.submit
 

Methods in org.omnaest.utils.threads.submit with parameters of type ExceptionHandler
 SubmitGroupFactory SubmitGroupFactory.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 

Uses of ExceptionHandler in org.omnaest.utils.xml
 

Fields in org.omnaest.utils.xml declared as ExceptionHandler
protected  ExceptionHandler JAXBXMLHelper.MarshallingAndUnmarshallingConfigurationAbstractBase.exceptionHandler
           
 

Methods in org.omnaest.utils.xml that return ExceptionHandler
 ExceptionHandler JAXBXMLHelper.MarshallingAndUnmarshallingConfigurationAbstractBase.getExceptionHandler()
           
 

Methods in org.omnaest.utils.xml with parameters of type ExceptionHandler
static
<E> E
JAXBXMLHelper.loadObjectFromNode(Node node, Class<E> type, ExceptionHandler exceptionHandler)
          Loads an object of the given class type from an Node.
static
<E> E
JAXBXMLHelper.loadObjectFromXML(CharSequence charSequence, Class<E> type, ExceptionHandler exceptionHandler)
          Loads an Object from a CharSequence which contains valid xml text content.
static
<E> E
JAXBXMLHelper.loadObjectFromXML(InputStream inputStream, Class<E> type, ExceptionHandler exceptionHandler)
          Loads an object of the given class type from an InputStream.
static
<E> E
JAXBXMLHelper.loadObjectFromXML(String xmlContent, Class<E> type, ExceptionHandler exceptionHandler)
           
<E> ElementConverter<String,E>
XMLIteratorFactory.JAXBTypeContentConverterFactory.newElementConverter(Class<? extends E> type, ExceptionHandler exceptionHandler)
          Returns an ElementConverter which converts from a given xml content String to an Object of the given type
<E> ElementConverter<String,E>
JAXBTypeContentConverterFactoryStAXONImpl.newElementConverter(Class<? extends E> type, ExceptionHandler exceptionHandler)
           
static Node XMLHelper.select(String xPathExpression, Node node, ExceptionHandler exceptionHandler)
          Allows to select sub Nodes by a given XPath expression
 XMLNestedMapConverter XMLNestedMapConverter.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 JAXBXMLHelper.MarshallingAndUnmarshallingConfigurationAbstractBase JAXBXMLHelper.MarshallingAndUnmarshallingConfigurationAbstractBase.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 JAXBXMLHelper.UnmarshallingConfiguration JAXBXMLHelper.UnmarshallingConfiguration.setExceptionHandler(ExceptionHandler exceptionHandler)
           
 JAXBXMLHelper.MarshallingConfiguration JAXBXMLHelper.MarshallingConfiguration.setExceptionHandler(ExceptionHandler exceptionHandler)
           
static String JAXBXMLHelper.storeObjectAsXML(Object object, ExceptionHandler exceptionHandler)
          Stores the given object as XML String using the JAXBXMLHelper.DEFAULT_ENCODING
static void JAXBXMLHelper.storeObjectAsXML(Object object, OutputStream outputStream, ExceptionHandler exceptionHandler)
           
static void JAXBXMLHelper.storeObjectAsXML(Object object, OutputStream outputStream, String encoding, ExceptionHandler exceptionHandler)
          Stores a given JAXB annotated object to the given OutputStream using the given character encoding
static String JAXBXMLHelper.storeObjectAsXML(Object object, String encoding, ExceptionHandler exceptionHandler)
           
static void XMLHelper.transform(StreamSource xslt, StreamSource xml, StreamResult result, ExceptionHandler exceptionHandler, XMLHelper.XSLTransformerConfiguration xslTransformerConfiguration)
          Uses the default TransformerFactory to transform the given xml StreamSource using the given xslt StreamSource into the StreamResult
 

Constructors in org.omnaest.utils.xml with parameters of type ExceptionHandler
JAXBXMLHelper.JAXBContextBasedUnmarshaller(Unmarshaller unmarshaller, XMLReader xmlReader, ExceptionHandler exceptionHandler, String encoding, Class<E> type)
           
JAXBXMLHelper.MarshallingAndUnmarshallingConfigurationAbstractBase(String encoding, ExceptionHandler exceptionHandler, Class<?>[] knownTypes)
           
JAXBXMLHelper.UnmarshallingConfiguration(String encoding, ExceptionHandler exceptionHandler, Class<?>[] knownTypes)
           
XMLIteratorFactory.JAXBTypeContentConverter(Class<? extends E> type, ExceptionHandler exceptionHandler)
           
XMLIteratorFactory.XMLIterator(Accessor<String> accessor, org.omnaest.utils.xml.XMLIteratorFactory.ScopeControl scopeControl, ExceptionHandler exceptionHandler, XMLEventReader xmlEventReader, XMLEventFactory xmlEventFactory, String encoding, org.omnaest.utils.xml.XMLIteratorFactory.TraversalContextControl traversalContextControl, XMLIteratorFactory.XMLElementSelector xmlElementSelector, XMLOutputFactory xmlOutputFactory, org.omnaest.utils.xml.XMLIteratorFactory.TouchBarrierControl touchBarrierControl, List<XMLIteratorFactory.XMLEventTransformer> xmlEventTransformerList)
           
XMLIteratorFactory(InputStream inputStream, ExceptionHandler exceptionHandler)
          Note: the XMLIteratorFactory does not close the underlying InputStream
 



Copyright © 2013. All Rights Reserved.