com.github.azbh111.utils.java.iterable.model.DifferenceView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.iterable.model;
import lombok.Builder;
import lombok.Getter;
import lombok.ToString;
/**
*
* @author pyz
* @date 2019/5/6 5:31 PM
*/
@Getter
@Builder
@ToString
public class DifferenceView {
private T leftOnly;
private T common;
private T rightOnly;
}