Class CsvMapper.ViewKey
- java.lang.Object
-
- com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- CsvMapper
public static final class CsvMapper.ViewKey extends java.lang.Object implements java.io.Serializable
Simple class in order to create a map key based onJavaType
and a given view. Used for caching associated schemas in_untypedSchemas
and_typedSchemas
.- Since:
- 2.14
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
_hashCode
private com.fasterxml.jackson.databind.JavaType
_pojoType
private java.lang.Class<?>
_view
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ViewKey(com.fasterxml.jackson.databind.JavaType pojoType, java.lang.Class<?> view)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
_pojoType
private final com.fasterxml.jackson.databind.JavaType _pojoType
-
_view
private final java.lang.Class<?> _view
-
_hashCode
private final int _hashCode
-
-