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

rt.data.Change Maven / Gradle / Ivy

package rt.data;

@SuppressWarnings("all")
public class Change {
  public enum Operation {
    ADD,
    
    REM;
  }
  
  public final String id;
  
  public final String oper;
  
  public final Object data;
  
  public Change(final Change.Operation oper, final String id, final Object data) {
    this.id = id;
    String _name = oper.name();
    String _lowerCase = _name.toLowerCase();
    this.oper = _lowerCase;
    this.data = data;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy