/* --------------------------------------------------------- * * __________ D E L T A S C R I P T * * (_________() * * / === / - A fast, dynamic scripting language * * | == | - Version 4.13.11.0 * * / === / - Developed by Adam R. Nelson * * | = = | - 2011-2013 * * / === / - Distributed under GNU LGPL v3 * * (________() - http://github.com/ar-nelson/deltascript * * * * --------------------------------------------------------- */ package com.sector91.delta.script.objects; import com.sector91.delta.script.annotations.DSInaccessible; public interface DS_Numeric extends DS_Object { @DSInaccessible int getNumberType(); @DSInaccessible boolean isIntegral(); @DSInaccessible DS_Numeric random(); @DSInaccessible DS_Numeric castTo(int nType); }