Enum Class AnnotationBasedKeySpaceResolver

java.lang.Object
java.lang.Enum<AnnotationBasedKeySpaceResolver>
org.springframework.data.keyvalue.core.mapping.AnnotationBasedKeySpaceResolver
All Implemented Interfaces:
Serializable, Comparable<AnnotationBasedKeySpaceResolver>, Constable, KeySpaceResolver

public enum AnnotationBasedKeySpaceResolver extends Enum<AnnotationBasedKeySpaceResolver> implements KeySpaceResolver
AnnotationBasedKeySpaceResolver looks up Persistent and checks for presence of either meta or direct usage of KeySpace. If non found it will default the keyspace to Class.getName().
Author:
Christoph Strobl, Oliver Gierke, Mark Paluch
  • Enum Constant Details

  • Method Details

    • values

      public static AnnotationBasedKeySpaceResolver[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AnnotationBasedKeySpaceResolver valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • resolveKeySpace

      @Nullable public String resolveKeySpace(Class<?> type)
      Description copied from interface: KeySpaceResolver
      Determine the keySpace to use for a given type.
      Specified by:
      resolveKeySpace in interface KeySpaceResolver
      Parameters:
      type - must not be null.
      Returns: