001package com.github.dkfellows.notabuilder.uses; 002import static com.github.dkfellows.notabuilder.ThingClass.Args.*; 003 004import com.github.dkfellows.notabuilder.ThingClass; 005 006/** An example of using a {@link ThingClass}. */ 007public class UseThingClass { 008 private UseThingClass(){} 009 /** 010 * This is callable. 011 * @param args Ignored 012 */ 013 public static void main(String... args) { 014 var thing = new ThingClass( 015 bar(123), 016 quux("hello world")); 017 018 System.out.println(thing); 019 } 020}