public enum MetadataFeature extends Enum<MetadataFeature> implements Feature
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getId() |
static MetadataFeature |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static MetadataFeature[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final MetadataFeature supportDerivedMetadata
public static final MetadataFeature propertyNotModifiable
public static final MetadataFeature propertyTypeNotModifiable
public static final MetadataFeature propertyNotDeletable
public static final MetadataFeature propertyNotInsertable
public static final MetadataFeature functionNotInsertable
public static final MetadataFeature functionNotModifiable
public static final MetadataFeature functionNotDeletable
public static final MetadataFeature eventNotInsertable
public static final MetadataFeature eventNotModifiable
public static final MetadataFeature eventNotDeletable
public static MetadataFeature[] values()
for (MetadataFeature c : MetadataFeature.values()) System.out.println(c);
public static MetadataFeature valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2019–2022. All rights reserved.