Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1df7e9ef5869f8d53d6e54dda9b2a5f3083857a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*******************************************************************************
* Copyright (c) 2008, 2009 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
* 
* Contributors:
*     Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.eclipselink.core.context.persistence.caching;

/**
 *  CacheType
 */
public enum CacheType {
	soft_weak, 
	hard_weak, 
	weak,
	soft,
	full,
	none; 

	// EclipseLink value string
	public static final String FULL = "Full";
	public static final String HARD_WEAK = "HardWeak";
	public static final String NONE = "NONE";
	public static final String SOFT = "Soft";
	public static final String SOFT_WEAK = "SoftWeak";
	public static final String WEAK = "Weak";
}

Back to the top