Class GemfireSimpleTypeHolder

java.lang.Object
org.springframework.data.mapping.model.SimpleTypeHolder
org.springframework.data.gemfire.mapping.model.GemfireSimpleTypeHolder

public class GemfireSimpleTypeHolder extends org.springframework.data.mapping.model.SimpleTypeHolder
The GemfireSimpleTypeHolder class is a Spring Data Commons SimpleTypeHolder implementation adding additional simple types to the collection.
Since:
1.6.3
See Also:
  • SimpleTypeHolder
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected static final Set<Class<?>>
     

    Fields inherited from class org.springframework.data.mapping.model.SimpleTypeHolder

    DEFAULT
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs an instance of GemfireSimpleTypeHolder initialized with additional, custom simple types handled by GemFire along with register the default simple types.
    GemfireSimpleTypeHolder(org.springframework.data.mapping.model.SimpleTypeHolder source)
    Constructs an instance of the GemfireSimpleTypeHolder initialized with a source SimpleTypeHolder.
  • Method Summary

    Methods inherited from class org.springframework.data.mapping.model.SimpleTypeHolder

    isSimpleType

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • CUSTOM_SIMPLE_TYPES

      protected static final Set<Class<?>> CUSTOM_SIMPLE_TYPES
  • Constructor Details

    • GemfireSimpleTypeHolder

      public GemfireSimpleTypeHolder()
      Constructs an instance of GemfireSimpleTypeHolder initialized with additional, custom simple types handled by GemFire along with register the default simple types.
      See Also:
      • SimpleTypeHolder(Set, boolean)
    • GemfireSimpleTypeHolder

      public GemfireSimpleTypeHolder(org.springframework.data.mapping.model.SimpleTypeHolder source)
      Constructs an instance of the GemfireSimpleTypeHolder initialized with a source SimpleTypeHolder.
      Parameters:
      source - the SimpleTypeHolder used as the source for GemFire's SimpleTypeHolder implementation. source must not be null.
      Throws:
      NullPointerException - if source is null.