public static enum AttributeSchema.ListOrder extends Enum<AttributeSchema.ListOrder>
ListOrder
defines the list orders of schema attributes and provides constants for these list
orders. These types will mainly be used by the GUI to determine how to display the schema attributes.Enum Constant and Description |
---|
INSERTION
Orders lists in the order they are entered in LDAP.
|
NATURAL
Orders lists naturally.
|
Modifier and Type | Method and Description |
---|---|
static AttributeSchema.ListOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeSchema.ListOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeSchema.ListOrder NATURAL
public static final AttributeSchema.ListOrder INSERTION
public static AttributeSchema.ListOrder[] values()
for (AttributeSchema.ListOrder c : AttributeSchema.ListOrder.values()) System.out.println(c);
public static AttributeSchema.ListOrder 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 © 2010–2025 Open Identity Platform Community. All rights reserved.