blob: 6f48810f6f468994f1ea65143d0b899954c82fd5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.oxm.mappings;
/**
* <p><b>Purpose:</b> Used in conjunction with XMLAnyObject/CollectionMapping and XMLCompositeObject/CollectionMapping
* to specify when (if at all) to keep parts of the unmarshalled document as nodes.
* <p>
* <table><tr><td>KEEP_ALL_AS_ELEMENT</td><td>Any xml matching this mapping will be brough into the object model
* as a node.</td></tr><tr><td>KEEP_UNKNOWN_AS_ELEMENT</td><td>Any XML with an unknown type that matches the mapping
* in question will be a kept as an element. Those with a known type will be processed normally.</td>
* <tr><td>KEEP_NONE_AS_ELEMENT</td><td>No xml shall be brought into the object as an element. Elements with unknown
* types will be ignored</td></tr></table>
*
*/
public enum UnmarshalKeepAsElementPolicy implements org.eclipse.persistence.internal.oxm.mappings.UnmarshalKeepAsElementPolicy {
KEEP_ALL_AS_ELEMENT, KEEP_NONE_AS_ELEMENT, KEEP_UNKNOWN_AS_ELEMENT;
@Override
public boolean isKeepAllAsElement() {
return this == KEEP_ALL_AS_ELEMENT;
}
@Override
public boolean isKeepNoneAsElement() {
return this == KEEP_NONE_AS_ELEMENT;
}
@Override
public boolean isKeepUnknownAsElement() {
return this == KEEP_UNKNOWN_AS_ELEMENT;
}
}