public enum MemoryType extends Enum<MemoryType>
Modifier and Type | Method and Description |
---|---|
String |
toString()
返回此
MemoryType的字符串表示
形式 。
|
static MemoryType |
valueOf(String name)
以指定的名称返回此类型的枚举常量。
|
static MemoryType[] |
values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。
|
public static final MemoryType HEAP
Java虚拟机有一个堆 ,它是运行时数据区域,从中分配了所有类实例和数组的内存。
public static final MemoryType NON_HEAP
Java虚拟机管理堆以外的内存(称为非堆内存 )。 非堆内存包括Java虚拟机的内部处理或优化所需的方法区域和内存。 它存储每个类的结构,例如运行时常量池,字段和方法数据,以及方法和构造函数的代码。
public static MemoryType[] values()
for (MemoryType c : MemoryType.values())
System.out.println(c);
public static MemoryType valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
NullPointerException
- 如果参数为空
public String toString()
toString
在类别
Enum<MemoryType>
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.