AxisBound

遗产: java.lang.Object

public class AxisBound

表示轴值的最小或最大界限。

要了解更多信息,请访问Working with Charts文档文章。

Bound 可以指定为数字、日期时间或特殊的“自动”值。

这个类的实例是不可变的。

构造器

构造函数描述
AxisBound()创建一个新实例,指示轴边界应由文字处理应用程序自动确定。
AxisBound(double value)创建一个以数字表示的轴边界。
AxisBound(Date datetime)创建一个表示为日期时间值的轴边界。

方法

方法描述
equals(Object obj)确定指定对象的值是否与当前对象相等。
getClass()
getValue()返回轴边界的数值。
getValueAsDate()返回以日期时间表示的轴边界值。
hashCode()
isAuto()返回一个标志,指示应自动确定轴边界。
notify()
notifyAll()
toString()返回显示此对象值的用户友好字符串。
wait()
wait(long arg0)
wait(long arg0, int arg1)

AxisBound()

public AxisBound()

创建一个新实例,指示轴边界应由文字处理应用程序自动确定。

AxisBound(double value)

public AxisBound(double value)

创建一个以数字表示的轴边界。

参数:

范围类型描述
valuedouble

AxisBound(Date datetime)

public AxisBound(Date datetime)

创建一个表示为日期时间值的轴边界。

参数:

范围类型描述
datetimejava.util.Date

equals(Object obj)

public boolean equals(Object obj)

确定指定对象的值是否与当前对象相等。

参数:

范围类型描述
objjava.lang.Object

退货: 布尔值

getClass()

public final native Class<?> getClass()

退货: java.lang.Class

getValue()

public double getValue()

返回轴边界的数值。

退货: double - 轴边界的数值。

getValueAsDate()

public Date getValueAsDate()

返回以日期时间表示的轴边界值。

退货: java.util.Date - 以日期时间表示的轴边界值。

hashCode()

public int hashCode()

退货: 整数

isAuto()

public boolean isAuto()

返回一个标志,指示应自动确定轴边界。

退货: boolean - 指示应自动确定轴边界的标志。

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

toString()

public String toString()

返回显示此对象值的用户友好字符串。

退货: java.lang.字符串

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

参数:

范围类型描述
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

参数:

范围类型描述
arg0long
arg1int