public enum DivisionStrategy extends Enum<DivisionStrategy>
| Enum Constant and Description |
|---|
FULL_WEAKENING |
PARTIAL_WEAKENING |
| Modifier and Type | Method and Description |
|---|---|
abstract BigInteger[] |
divide(BigInteger a,
BigInteger b) |
static DivisionStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DivisionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DivisionStrategy FULL_WEAKENING
public static final DivisionStrategy PARTIAL_WEAKENING
public static DivisionStrategy[] values()
for (DivisionStrategy c : DivisionStrategy.values()) System.out.println(c);
public static DivisionStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic abstract BigInteger[] divide(BigInteger a, BigInteger b)
Copyright © 2020 Centre de Recherche en Informatique de Lens (CRIL). All rights reserved.