public enum ConnParameterType extends Enum<ConnParameterType>
| Enum Constant and Description |
|---|
NOT_OVERRIDABLE |
OVERRIDABLE
Connector parameter type:
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
getOverridable() |
static ConnParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnParameterType OVERRIDABLE
public static final ConnParameterType NOT_OVERRIDABLE
public static ConnParameterType[] values()
for (ConnParameterType c : ConnParameterType.values()) System.out.println(c);
public static ConnParameterType 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 nullpublic boolean getOverridable()
Copyright © 2010–2018 The Apache Software Foundation. All rights reserved.