Uses of Class
com.google.api.client.util.FieldInfo
-
Packages that use FieldInfo Package Description com.google.api.client.util General utilities used throughout this library. -
-
Uses of FieldInfo in com.google.api.client.util
Fields in com.google.api.client.util declared as FieldInfo Modifier and Type Field Description private FieldInfo
DataMap.EntryIterator. currentFieldInfo
Current field info found byDataMap.EntryIterator.next()
ornull
beforeDataMap.EntryIterator.next()
has been called.private FieldInfo
DataMap.Entry. fieldInfo
Field info.private FieldInfo
DataMap.EntryIterator. nextFieldInfo
Next field info computed inDataMap.EntryIterator.hasNext()
ornull
beforeDataMap.EntryIterator.hasNext()
has been called since the lastDataMap.EntryIterator.next()
.Fields in com.google.api.client.util with type parameters of type FieldInfo Modifier and Type Field Description private static java.util.Map<java.lang.reflect.Field,FieldInfo>
FieldInfo. CACHE
Cached field information.private java.util.IdentityHashMap<java.lang.String,FieldInfo>
ClassInfo. nameToFieldInfoMap
Map fromgetName()
to the field information.Methods in com.google.api.client.util that return FieldInfo Modifier and Type Method Description FieldInfo
ClassInfo. getFieldInfo(java.lang.String name)
Returns the information for the givengetName()
.static FieldInfo
FieldInfo. of(java.lang.Enum<?> enumValue)
Returns the field information for the given enum value.static FieldInfo
FieldInfo. of(java.lang.reflect.Field field)
Returns the field information for the given field.Methods in com.google.api.client.util that return types with arguments of type FieldInfo Modifier and Type Method Description java.util.Collection<FieldInfo>
ClassInfo. getFieldInfos()
Returns an unmodifiable collection of theFieldInfo
s for this class, without any guarantee of order.Constructors in com.google.api.client.util with parameters of type FieldInfo Constructor Description Entry(FieldInfo fieldInfo, java.lang.Object fieldValue)
-