public WeatherRecord build()

in bigtop-data-generators/bigtop-weatherman/src/main/java/org/apache/bigtop/datagenerators/weatherman/internal/WeatherRecordBuilder.java [127:134]


  public WeatherRecord build() {
    if (temperature == null || precipitation == null || windSpeed == null
            || windChill == null || rainFall == null || snowFall == null) {
      throw new IllegalStateException("Not all fields have been initialized.");
    }

    return this;
  }