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

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

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

import java.util.LinkedList;
import java.util.List;

/**
 * @author zouwei
 * @className QuadKey
 * @date: 2022/8/18 下午2:16
 * @description:
 */
public class QuadKey extends Element {

	private String quadkey;

	public QuadKey(String quadkey) {
		this.quadkey = quadkey;
	}

	@Override
	public List commandArgs() {
		List list = new LinkedList<>();
		list.add("QUADKEY");
		list.add(this.quadkey);
		return list;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy