Enum Class ClassNameKeySpaceResolver

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

public enum ClassNameKeySpaceResolver extends Enum<ClassNameKeySpaceResolver> implements KeySpaceResolver
Most trivial implementation of KeySpaceResolver returning the Class.getName().
Author:
Christoph Strobl, Oliver Gierke
  • Enum Constant Details

  • Method Details

    • values

      public static ClassNameKeySpaceResolver[] 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 ClassNameKeySpaceResolver 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

      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: