org.springframework.data.mongodb.core.mapping
Enum MongoPersistentProperty.PropertyToFieldNameConverter

java.lang.Object
  extended by java.lang.Enum<MongoPersistentProperty.PropertyToFieldNameConverter>
      extended by org.springframework.data.mongodb.core.mapping.MongoPersistentProperty.PropertyToFieldNameConverter
All Implemented Interfaces:
Serializable, Comparable<MongoPersistentProperty.PropertyToFieldNameConverter>, org.springframework.core.convert.converter.Converter<MongoPersistentProperty,String>
Enclosing interface:
MongoPersistentProperty

public static enum MongoPersistentProperty.PropertyToFieldNameConverter
extends Enum<MongoPersistentProperty.PropertyToFieldNameConverter>
implements org.springframework.core.convert.converter.Converter<MongoPersistentProperty,String>

Simple Converter implementation to transform a MongoPersistentProperty into its field name.

Author:
Oliver Gierke

Enum Constant Summary
INSTANCE
           
 
Method Summary
 String convert(MongoPersistentProperty source)
           
static MongoPersistentProperty.PropertyToFieldNameConverter valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MongoPersistentProperty.PropertyToFieldNameConverter[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INSTANCE

public static final MongoPersistentProperty.PropertyToFieldNameConverter INSTANCE
Method Detail

values

public static MongoPersistentProperty.PropertyToFieldNameConverter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MongoPersistentProperty.PropertyToFieldNameConverter c : MongoPersistentProperty.PropertyToFieldNameConverter.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MongoPersistentProperty.PropertyToFieldNameConverter valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null

convert

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


Copyright © 2011. All Rights Reserved.