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

org.aya.util.Decision Maven / Gradle / Ivy

There is a newer version: 0.36.0
Show newest version
// Copyright (c) 2020-2023 Tesla (Yinsen) Zhang.
// Use of this source code is governed by the MIT license that can be found in the LICENSE.md file.
package org.aya.util;

import org.jetbrains.annotations.NotNull;

public enum Decision {
  NO, MAYBE, YES;

  public static @NotNull Decision confident(boolean b) {
    return b ? YES : NO;
  }

  public static @NotNull Decision optimistic(boolean b) {
    return b ? YES : MAYBE;
  }

  public @NotNull Decision max(Decision other) {
    return ordinal() >= other.ordinal() ? this : other;
  }

  public @NotNull Decision min(Decision other) {
    return ordinal() <= other.ordinal() ? this : other;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy