class BoxOfString { private String value; private boolean empty; public BoxOfString() { this.empty = true; } public BoxOfString(String value) { this.empty = false; this.value = value; } public String remove() { empty = true; return value; } public void insert(String value) { if (empty) { empty = false; this.value = value; } } }