Home | History | Annotate | Download | only in vehiclehal

Lines Matching refs:VehiclePropValueBuilder

24 public class VehiclePropValueBuilder {
27 public static VehiclePropValueBuilder newBuilder(int propId) {
28 return new VehiclePropValueBuilder(propId);
31 public static VehiclePropValueBuilder newBuilder(VehiclePropValue propValue) {
32 return new VehiclePropValueBuilder(propValue);
35 private VehiclePropValueBuilder(int propId) {
40 private VehiclePropValueBuilder(VehiclePropValue propValue) {
60 public VehiclePropValueBuilder setAreaId(int areaId) {
66 public VehiclePropValueBuilder setTimestamp(long timestamp) {
72 public VehiclePropValueBuilder setTimestamp() {
78 public VehiclePropValueBuilder addIntValue(int... values) {
86 public VehiclePropValueBuilder addFloatValue(float... values) {
94 public VehiclePropValueBuilder addByteValue(byte... values) {
102 public VehiclePropValueBuilder setInt64Value(long... values) {
110 public VehiclePropValueBuilder setBooleanValue(boolean value) {
117 public VehiclePropValueBuilder setStringValue(String val) {