Java中的 FormatStyle values() 方法及示例
FormatStyle 枚举的values()方法用于包含此 FormatStyle 的单元的数组,按顺序声明它们。
句法:
public static FormatStyle[] values()
参数:此方法不接受任何内容。
返回值:此方法返回一个包含此枚举类型的常量的数组,按顺序声明它们。
下面的程序说明了 FormatStyle.values() 方法:
方案一:
Java
// Java program to demonstrate
// FormatStyle.values() method
import java.time.format.FormatStyle;
public class GFG {
public static void main(String[] args)
{
// Get FormatStyle instance
FormatStyle formatStyle
= FormatStyle.valueOf("FULL");
// Get the constants using values()
FormatStyle[] array
= formatStyle.values();
// Print the values
for (int i = 0; i < array.length; i++)
System.out.println(array[i]);
}
}
Java
// Java program to demonstrate
// FormatStyle.values() method
import java.time.format.FormatStyle;
public class GFG {
public static void main(String[] args)
{
// Get FormatStyle instance
FormatStyle formatStyle
= FormatStyle.valueOf("FULL");
// Get the constants using values()
FormatStyle[] array
= formatStyle.values();
// Print the values
System.out.println("FormatStyle length: "
+ array.length);
}
}
输出:
FULL
LONG
MEDIUM
SHORT
方案二:
Java
// Java program to demonstrate
// FormatStyle.values() method
import java.time.format.FormatStyle;
public class GFG {
public static void main(String[] args)
{
// Get FormatStyle instance
FormatStyle formatStyle
= FormatStyle.valueOf("FULL");
// Get the constants using values()
FormatStyle[] array
= formatStyle.values();
// Print the values
System.out.println("FormatStyle length: "
+ array.length);
}
}
输出:
FormatStyle length: 4
参考资料:https: Java