Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Typically the default InOut is what most folks want but you can customize to use InOnly using an annotation.

Code Block
java
java
public interface Foo {
  Object someInOutMethod(String input);
  String anotherInOutMethod(Cheese input);
  
  @InOnly
  void someInOnlyMethod(Document input);
}

...