com.supermap.services.rest.util
Class JsonConverter.FieldInfo
- java.lang.Object
-
- com.supermap.services.rest.util.JsonConverter.FieldInfo
-
- Enclosing class:
- JsonConverter
public static class JsonConverter.FieldInfo extends java.lang.ObjectField type class.
-
-
Field Summary
Fields Modifier and Type Field and Description java.lang.Class<?>[]elementTypesIf it is a collection type, it represents an element type.java.lang.Class<?>typeGive type.
-
Constructor Summary
Constructors Constructor and Description JsonConverter.FieldInfo()
-
-
-
Field Detail
-
type
public java.lang.Class<?> type
Give type.
-
elementTypes
public java.lang.Class<?>[] elementTypes
If it is a collection type, it represents an element type. Such as List type of field, then his elementTypes is {String.class}, and for Map type of field, his elementTypes is {String.class, String.class}
-
-