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

com.ly.mybatis.mapperservice.service.join.inject.Operation Maven / Gradle / Ivy

The newest version!
package com.ly.mybatis.mapperservice.service.join.inject;

public class Operation {
    private final int type;
    private final Object operation;

    public static Operation of(int type, Object operation) {
        return new Operation(type, operation);
    }

    public Operation(int type, Object operation) {
        this.type = type;
        this.operation = operation;
    }

    public int getType() {
        return type;
    }

    public  T getOperation() {
        return (T) operation;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy