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

net.glxn.qrgen.core.scheme.SubSchema Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package net.glxn.qrgen.core.scheme;

import java.util.Map;

/**
 * Abstact class for sub schema.
 */
public abstract class SubSchema {

	SubSchema() {
		super();
	}

	/**
	 * Parse qr code sub schema for given code string and parent parameters.
	 * 
	 * @param code
	 * @return schema
	 */
	public abstract SubSchema parseSchema(Map parameters, String code);

	/**
	 * Generates code string.
	 * 
	 * @return code
	 */
	public abstract String generateString();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy