private double getWeightMatchPosition() {
   return buffer.getFloat(WEIGHT_MATCH_POSITION.getOffset());
 }
 private void setWeightMatchPosition(double weight) {
   buffer.putFloat(WEIGHT_MATCH_POSITION.getOffset(), (float) weight);
   dirty = true;
 }