Enum Class RedisIndexDefinition.NoOpValueTransformer

java.lang.Object
java.lang.Enum<RedisIndexDefinition.NoOpValueTransformer>
org.springframework.data.redis.core.index.RedisIndexDefinition.NoOpValueTransformer
All Implemented Interfaces:
Serializable, Comparable<RedisIndexDefinition.NoOpValueTransformer>, Constable, org.springframework.core.convert.converter.Converter<Object,Object>, IndexValueTransformer
Enclosing class:
RedisIndexDefinition

public static enum RedisIndexDefinition.NoOpValueTransformer extends Enum<RedisIndexDefinition.NoOpValueTransformer> implements IndexValueTransformer
Since:
1.7
Author:
Christoph Strobl
  • Enum Constant Details

  • Method Details

    • 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 RedisIndexDefinition.NoOpValueTransformer 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
    • convert

      public Object convert(Object source)
      Specified by:
      convert in interface org.springframework.core.convert.converter.Converter<Object,Object>