All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.dataconversion.Wrapper Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev03
Show newest version
package org.infinispan.commons.dataconversion;

/**
 * A Wrapper is used to decorate objects produced by the {@link Encoder}.
 * A Wrapper, contrary to the Encoder, does not cause data conversion and it's used to provide additional
 * behaviour to the encoded data such as equality/hashCode and indexing capabilities.
 *
 * @since 9.1
 */
public interface Wrapper {

   Object wrap(Object obj);

   Object unwrap(Object obj);

   byte id();

   /**
    * @return true if the wrapped format is suitable to be indexed or filtered, thus avoiding extra unwrapping.
    */
   boolean isFilterable();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy