|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 枚举常量 | 字段 | 方法 | 详细信息: 枚举常量 | 字段 | 方法 | |||||||||
java.lang.Objectjava.lang.Enum<Flags.PutFlag>
cn.chenlichao.wmi4j.consts.Flags.PutFlag
public static enum Flags.PutFlag
Optional values of flags parameter of SWbemObject.put()
| 枚举常量摘要 | |
|---|---|
wbemChangeFlagCreateOnly
2(0x2): Used for creation only. |
|
wbemChangeFlagCreateOrUpdate
0(0x0): Causes the class or instance to be created if it does not exist or overwritten if it exists already. |
|
wbemChangeFlagUpdateCompatible
0(0x0): Allows a class to be updated if there are no derived classes and there are no instances for that class. |
|
WbemChangeFlagUpdateForceMode
64(0x40): This flag forces updates of classes when conflicting child classes exist. |
|
wbemChangeFlagUpdateOnly
1(0x1): Causes this call to update. |
|
wbemChangeFlagUpdateSafeMode
32(0x20): Allows updates of classes even if there are child classes if the change does not cause any conflicts with child classes. |
|
wbemFlagReturnImmediately
16(0x10): Causes the call to return immediately. |
|
wbemFlagReturnWhenComplete
0(0x0): Causes this call to block until the query is complete. |
|
wbemFlagUseAmendedQualifiers
131072(0x20000): Causes WMI to return class amendment data with the base class definition. |
|
| 方法摘要 | |
|---|---|
int |
getValue()
|
static Flags.PutFlag |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。 |
static Flags.PutFlag[] |
values()
按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。 |
| 从类 java.lang.Enum 继承的方法 |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| 从类 java.lang.Object 继承的方法 |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| 枚举常量详细信息 |
|---|
public static final Flags.PutFlag wbemChangeFlagUpdateCompatible
public static final Flags.PutFlag wbemChangeFlagUpdateSafeMode
public static final Flags.PutFlag WbemChangeFlagUpdateForceMode
Using force mode to update a static class results in the deletion of all instances of that class. A forced update on a provider class does not delete instances of the class.
public static final Flags.PutFlag wbemChangeFlagCreateOrUpdate
public static final Flags.PutFlag wbemChangeFlagCreateOnly
public static final Flags.PutFlag wbemChangeFlagUpdateOnly
public static final Flags.PutFlag wbemFlagReturnImmediately
public static final Flags.PutFlag wbemFlagReturnWhenComplete
public static final Flags.PutFlag wbemFlagUseAmendedQualifiers
| 方法详细信息 |
|---|
public static Flags.PutFlag[] values()
for (Flags.PutFlag c : Flags.PutFlag.values()) System.out.println(c);
public static Flags.PutFlag valueOf(String name)
name - 要返回的枚举常量的名称。
如果该枚举类型没有带有指定名称的常量, - 则抛出 IllegalArgumentExceptionpublic int getValue()
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 枚举常量 | 字段 | 方法 | 详细信息: 枚举常量 | 字段 | 方法 | |||||||||