public static enum RenderingHintsBuilder.Interpolation extends Enum<RenderingHintsBuilder.Interpolation>
| 枚举常量和说明 |
|---|
BICUBIC
双三次插值
|
BILINEAR
双线性插值
|
NEAREST_NEIGHBOR
最近邻插值
|
| 限定符和类型 | 方法和说明 |
|---|---|
Object |
getValue()
获取值
|
static RenderingHintsBuilder.Interpolation |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RenderingHintsBuilder.Interpolation[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RenderingHintsBuilder.Interpolation BICUBIC
public static final RenderingHintsBuilder.Interpolation BILINEAR
public static final RenderingHintsBuilder.Interpolation NEAREST_NEIGHBOR
public static RenderingHintsBuilder.Interpolation[] values()
for (RenderingHintsBuilder.Interpolation c : RenderingHintsBuilder.Interpolation.values()) System.out.println(c);
public static RenderingHintsBuilder.Interpolation valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public Object getValue()
Copyright © 2023. All rights reserved.