Interface FeatureMap.FloatListOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FeatureMap.FloatList,FeatureMap.FloatList.Builder
- Enclosing class:
- FeatureMap
public static interface FeatureMap.FloatListOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetValue(int index)Float feature value.intgetValueCount()Float feature value.List<Float>getValueList()Float feature value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValueList
List<Float> getValueList()
Float feature value.
repeated float value = 1;- Returns:
- A list containing the value.
-
getValueCount
int getValueCount()
Float feature value.
repeated float value = 1;- Returns:
- The count of value.
-
getValue
float getValue(int index)
Float feature value.
repeated float value = 1;- Parameters:
index- The index of the element to return.- Returns:
- The value at the given index.
-
-