ResultFrom.java 224 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12
package com.ydl.ydlnet.cache.data;

/**
 * 数据来源
 */
public enum ResultFrom {
    Remote, Disk, Memory;

    public static boolean ifFromCache(ResultFrom from) {
        return from == Disk || from == Memory;
    }
}