001package com.avaje.ebean.cache;
002
003/**
004 * The type of L2 caches.
005 */
006public enum ServerCacheType {
007
008  /**
009   * Bean cache.
010   */
011  BEAN,
012
013  /**
014   * Natural key cache.
015   */
016  NATURAL_KEY,
017
018  /**
019   * Collection Ids for Many properties.
020   */
021  COLLECTION_IDS,
022
023  /**
024   * Query cache.
025   */
026  QUERY
027}