java命名空间java.awt枚举component.baselineresizebehavior的类成员方法:
other定义及介绍
本文导语:
other
public static final component.baselineresizebehavior other
指示基线调整行为无法使用其他任何常量表示。它也可能指示基线随组件宽度的不同而不同。没有基线的组件也会返回它。
values
public static final component.baselineresizebehavior[...
public static final component.baselineresizebehavior other
- 指示基线调整行为无法使用其他任何常量表示。它也可能指示基线随组件宽度的不同而不同。没有基线的组件也会返回它。
public static final component.baselineresizebehavior[] values()
- returns an array containing the constants of this enum type, in
the order they are declared. this method may be used to iterate
over the constants as follows:
for(component.baselineresizebehavior c : component.baselineresizebehavior.values())
system.out.println(c);
- 返回:
- an array containing the constants of this enum type, in
the order they are declared