All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.obsidiandynamics.blackstrom.handler.Groupable Maven / Gradle / Ivy

The newest version!
package com.obsidiandynamics.blackstrom.handler;

@FunctionalInterface
public interface Groupable {
  String getGroupId();
  
  interface ClassGroup extends Groupable {
    @Override
    default String getGroupId() {
      return getClass().getSimpleName();
    }
  }
  
  interface NullGroup extends Groupable {
    @Override
    default String getGroupId() {
      return null;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy