All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.norberg.automatter.example.SimpleGenericExample Maven / Gradle / Ivy

There is a newer version: 0.26.2
Show newest version
package io.norberg.automatter.example;

import java.io.IOException;

public class SimpleGenericExample {

  public static void main(final String... args) throws IOException {
    GenericFoobar foobar = new GenericFoobarBuilder()
        .foo(17)
        .bar(1, 2, 3)
        .putBaz("hello world", 4711)
        .build();

    System.out.println(foobar);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy