Java Programming/Keywords/interface

is a Java keyword. It starts the declaration of a Java Interface.

For example:

public interface SampleInterface
{
   public void method1();
   //...
}

See also: