Home | History | Annotate | Download | only in storagemonitoring

Lines Matching defs:typeB

68     public final int typeB;
76 public WearEstimate(int typeA, int typeB) {
78 this.typeB = validateWearValue(typeB);
83 typeB = validateWearValue(in.readInt());
88 int typeB = UNKNOWN;
96 typeB = validateWearValue(in.nextInt());
102 this.typeB = typeB;
108 typeB = in.getInt("wearEstimateTypeB");
119 dest.writeInt(typeB);
125 jsonWriter.name("wearEstimateTypeB").value(typeB);
133 return wo.typeA == typeA && wo.typeB == typeB;
140 return Objects.hash(typeA, typeB);
150 return "type A: " + wearValueToString(typeA) + ", type B: " + wearValueToString(typeB);