All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.toolkit.util.enumeration.Flags Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2002-2012 Alibaba Group Holding Limited.
 * All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.alibaba.toolkit.util.enumeration;

/**
 * 标记Enum为位操作的模式, 也就是说Enum值不是递增, 而是倍增(左移).
 *
 * @author Michael Zhou
 * @version $Id: Flags.java,v 1.1 2003/07/03 07:26:20 baobao Exp $
 */
public interface Flags extends IntegralNumber {
    /**
     * 设置成不可变的位集.
     *
     * @return 位集本身
     */
    Flags setImmutable();

    /**
     * 对当前位集执行逻辑与操作.
     *
     * @param flags 标志位
     * @return 当前位集
     */
    Flags and(Flags flags);

    /**
     * 对当前位集执行逻辑非操作.
     *
     * @param flags 标志位
     * @return 当前位集
     */
    Flags andNot(Flags flags);

    /**
     * 对当前位集执行逻辑或操作.
     *
     * @param flags 标志位
     * @return 当前位集
     */
    Flags or(Flags flags);

    /**
     * 对当前位集执行逻辑异或操作.
     *
     * @param flags 标志位
     * @return 当前位集
     */
    Flags xor(Flags flags);

    /**
     * 清除当前位集的全部位.
     *
     * @return 当前位集
     */
    Flags clear();

    /**
     * 清除当前位集的指定位, 等效于andNot操作.
     *
     * @param flags 标志位
     * @return 当前位集
     */
    Flags clear(Flags flags);

    /**
     * 设置当前位集的指定位, 等效于or操作.
     *
     * @param flags 标志位
     * @return 当前位集
     */
    Flags set(Flags flags);

    /**
     * 测试当前位集的指定位, 等效于and(flags) != 0.
     *
     * @param flags 标志位
     * @return 如果指定位被置位, 则返回true
     */
    boolean test(Flags flags);

    /**
     * 测试当前位集的指定位, 等效于and(flags) == flags.
     *
     * @param flags 标志位
     * @return 如果指定位被置位, 则返回true
     */
    boolean testAll(Flags flags);

    /**
     * 取得标志的值.
     *
     * @return 标志的值
     */
    Object getValue();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy