本文整理汇总了Java中javax.management.ImmutableDescriptor.getFieldValue方法的典型用法代码示例。如果您正苦于以下问题:Java ImmutableDescriptor.getFieldValue方法的具体用法?Java ImmutableDescriptor.getFieldValue怎么用?Java ImmutableDescriptor.getFieldValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.management.ImmutableDescriptor
的用法示例。
在下文中一共展示了ImmutableDescriptor.getFieldValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: main
import javax.management.ImmutableDescriptor; //导入方法依赖的package包/类
public static void main(String[] args) throws Exception {
boolean ok = true;
ImmutableDescriptor d = new ImmutableDescriptor(
new String[] {
"strings", "ints", "booleans",
},
new Object[] {
new String[] {"foo"},
new int[] {5},
new boolean[] {false},
});
String[] strings = (String[]) d.getFieldValue("strings");
strings[0] = "bar";
strings = (String[]) d.getFieldValue("strings");
if (!strings[0].equals("foo")) {
System.out.println("FAILED: modified string array field");
ok = false;
}
int[] ints = (int[]) d.getFieldValue("ints");
ints[0] = 0;
ints = (int[]) d.getFieldValue("ints");
if (ints[0] != 5) {
System.out.println("FAILED: modified int array field");
ok = false;
}
boolean[] bools = (boolean[]) d.getFieldValue("booleans");
bools[0] = true;
bools = (boolean[]) d.getFieldValue("booleans");
if (bools[0]) {
System.out.println("FAILED: modified boolean array field");
ok = false;
}
Object[] values = d.getFieldValues("strings", "ints", "booleans");
((String[]) values[0])[0] = "bar";
((int[]) values[1])[0] = 0;
((boolean[]) values[2])[0] = true;
values = d.getFieldValues("strings", "ints", "booleans");
if (!((String[]) values[0])[0].equals("foo") ||
((int[]) values[1])[0] != 5 ||
((boolean[]) values[2])[0]) {
System.out.println("FAILED: getFieldValues modifiable: " +
Arrays.deepToString(values));
}
if (ok)
System.out.println("TEST PASSED");
else
throw new Exception("Array field values were modifiable");
}