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

com.ui4j.bytebuddy.modifier.SynchronizationState Maven / Gradle / Ivy

The newest version!
package com.ui4j.bytebuddy.modifier;

import com.ui4j.bytebuddy.instrumentation.ModifierContributor;
import com.ui4j.bytebuddy.jar.asm.Opcodes;

/**
 * Describes if a method is supposed to be synchronized.
 */
public enum SynchronizationState implements ModifierContributor.ForMethod {

    /**
     * Modifier for non-synchronized method. (This is the default modifier.)
     */
    PLAIN(EMPTY_MASK),

    /**
     * Modifier for a synchronized method.
     */
    SYNCHRONIZED(Opcodes.ACC_SYNCHRONIZED);

    /**
     * The mask the modifier contributor.
     */
    private final int mask;

    /**
     * Creates a new synchronization state representation.
     *
     * @param mask The modifier mask of this instance.
     */
    private SynchronizationState(int mask) {
        this.mask = mask;
    }

    /**
     * Creates a synchronization state from a boolean value indicating if a method is supposed to be synchronized.
     *
     * @param isSynchronized {@code true} if the state is supposed to be synchronized.
     * @return The corresponding synthetic state.
     */
    public static SynchronizationState is(boolean isSynchronized) {
        return isSynchronized ? SYNCHRONIZED : PLAIN;
    }

    @Override
    public int getMask() {
        return mask;
    }

    /**
     * Checks if the current state describes the synchronized state.
     *
     * @return {@code true} if the current state is synchronized.
     */
    public boolean isSynchronized() {
        return this == SYNCHRONIZED;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy