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

com.alogic.xscript.doc.XsPrimitive Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.xscript.doc;

/**
 * Primitive
 * @author yyduan
 * @since 1.6.8.14
 */
public interface XsPrimitive extends XsElement{
	
	public String getAsString();
	
	public boolean getAsBoolean(boolean dft);
		
	public int getAsInt(int dft);
	
	public long getAsLong(long dft);
	
	public float getAsFloat(float dft);
	
	public double getAsDouble(double dft);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy