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

com.github.zw201913.entity.SetChanIntersectsOpts Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.zw201913.entity;

/**
 * @author zouwei
 * @className SetChanIntersectsOpts
 * @date: 2022/8/18 下午12:47
 * @description:
 */
public class SetChanIntersectsOpts extends SetChanOpts {


	protected SetChanIntersectsOpts(Builder builder) {
		super(builder);
	}

	@Override
	protected String command() {
		return "INTERSECTS";
	}

	public static class Builder extends SetChanOpts.Builder {

		@Override
		public SetChanOpts build() {
			return new SetChanIntersectsOpts(this);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy