public interface FieldMetaData extends Serializable
Modifier and Type | Method and Description |
---|---|
Set<String> |
getAdditionalSources()
Retrieves all additional sources for the field.
|
JavaTypes.Type |
getJavaType()
Retrieves the type of the field
|
String |
getName()
Retrieves the name of the field.
|
String |
getSchema()
Retrieves the schema for the field.
|
String |
getSource()
Retrieves the source name for the field.
|
boolean |
isCaseSensitive()
Indicates if the values in the field are case sensitive.
|
boolean |
isNullable()
Indicates if the values in the field may be null.
|
String getName()
String getSource()
Set<String> getAdditionalSources()
String getSchema()
JavaTypes.Type getJavaType()
boolean isNullable()
true
if the field is nullable; false
otherwiseboolean isCaseSensitive()
false
for types which are not handling characters.true
if the field is case sensitive;
false
otherwise