public enum SchemaType extends Enum<SchemaType>
| Enum Constant and Description |
|---|
DERIVED
Derived schema calculated based on other attributes.
|
NORMAL
Standard schema for normal attributes to be stored within syncope.
|
VIRTUAL
Virtual schema for attributes fetched from remote resources only.
|
| Modifier and Type | Method and Description |
|---|---|
static SchemaType |
fromToClass(Class<? extends AbstractSchemaTO> toClass) |
Class<? extends AbstractSchemaTO> |
getToClass() |
static SchemaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaType NORMAL
public static final SchemaType DERIVED
public static final SchemaType VIRTUAL
public static SchemaType[] values()
for (SchemaType c : SchemaType.values()) System.out.println(c);
public static SchemaType 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 Class<? extends AbstractSchemaTO> getToClass()
public static SchemaType fromToClass(Class<? extends AbstractSchemaTO> toClass)
Copyright © 2010–2018 The Apache Software Foundation. All rights reserved.