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

com.gdxsoft.easyweb.utils.msnet.MTableStr Maven / Gradle / Ivy

Go to download

Easy Web Appliaction Utils: UArgon2, UMail, UDigest, URsa, UAes, UDes, UFile, UConvert, UFormat, UNet, SendMail, SmtpCfg

The newest version!
package com.gdxsoft.easyweb.utils.msnet;

public class MTableStr extends MTable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1433128716224188581L;

	public String get(String key) {
		if (super.containsKey(key)) {
			return super.get(key).toString();
		} else {
			return null;
		}
	}

	public String getByIndex(int index) {
		Object rst = super.getByIndex(index);
		if (rst == null)
			return null;
		return rst.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy