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

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

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

/**
 * @author zouwei
 * @className SetChanWithNearByOpts
 * @date: 2022/8/18 上午11:24
 * @description:
 */
public class SetChanNearByOpts extends SetChanOpts {
	protected SetChanNearByOpts(Builder builder) {
		super(builder);
	}

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

	public static class Builder extends SetChanOpts.Builder {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy