Skip to content

Interfaces

hxs edited this page Nov 26, 2019 · 3 revisions

Jutilas Interfaces

JutilasFunction

Package jutilas.interfaces
File JutilasFunction.java

This interface represents a void function without parameters.

Example:

JutilasFunction jf = () -> {
  // your code
};
jf.execute();