4.0

Table Of Contents
ErrorLevel Enumeration
The ErrorLevel enumeration defines constant values for different levels of error that a plug-in encounters.
public enum HasChildrenResult
extends java.lang.Enum<HasChildrenResult>
implements java.io.Serializable
The ErrorLevel enumeration defines the following constant values for error levels:
n
public static final ErrorLevel Fatal
n
public static final ErrorLevel Error
n
public static final ErrorLevel Warning
n
public static final ErrorLevel Info
n
public static final ErrorLevel Debug
The ErrorLevel enumeration defines the following methods:
Method Returns Description
values() static
ErrorLevel[]
Returns an array containing the constants of this enumeration
type, in the order that plug-in declares them. You can use this
method to iterate through the constants as follows:
for (ErrorLevel c : ErrorLevel.values())
System.out.println(c);
valueOf(java.lang.String
name)
java.lang.String
Returns the constant value of an enumeration with the
specified name. The string must match an identifier that you
use to declare an enumeration constant in this type. Extraneous
whitespace characters are not permitted.
The name parameter is the name of the enumeration constant
to return.
getSeverity() ErrorLevel
Returns the ErrorLevel value of the error.
The ErrorLevel enumeration inherits the following methods from class java.lang.Enum:
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
HasChildrenResult Enumeration
The HasChildrenResult Enumeration declares whether a given parent has children. The
IPluginFactory.hasChildrenInRelation method returns HasChildrenResult objects.
public enum HasChildrenResult
extends java.lang.Enum<HasChildrenResult>
implements java.io.Serializable
The HasChildrenResult enumeration defines the following constants:
n
public static final HasChildrenResult Yes
n
public static final HasChildrenResult No
n
public static final HasChildrenResult Unknown
The HasChildrenResult enumeration defines the following methods:
vCenter Orchestrator Developer's Guide
228 VMware, Inc.