public enum ComponentVisibility extends Enum<ComponentVisibility>
| Enum Constant and Description |
|---|
PRIVATE
The
ComponentModel will not be visible for third parties |
PUBLIC
The
ComponentModel will be visible for third parties |
| Modifier and Type | Method and Description |
|---|---|
static ComponentVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentVisibility PUBLIC
ComponentModel will be visible for third partiespublic static final ComponentVisibility PRIVATE
ComponentModel will not be visible for third partiespublic static ComponentVisibility[] values()
for (ComponentVisibility c : ComponentVisibility.values()) System.out.println(c);
public static ComponentVisibility valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 MuleSoft, Inc.. All rights reserved.