Enum FaultResult.Status

    • Enum Constant Detail

      • SUCCESS

        public static final FaultResult.Status SUCCESS
        The computation went ok and no error were returned
      • NO_SHORT_CIRCUIT_DATA

        public static final FaultResult.Status NO_SHORT_CIRCUIT_DATA
        Data useful to short circuit calculation is missing, typically the transient reactance of generators
      • SOLVER_FAILURE

        public static final FaultResult.Status SOLVER_FAILURE
        The computation failed due to an error in the solver.
      • FAILURE

        public static final FaultResult.Status FAILURE
        The computation failed due to something not related to the solver.
    • Method Detail

      • values

        public static FaultResult.Status[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FaultResult.Status c : FaultResult.Status.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FaultResult.Status valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null