public static PowerShellBitness fromString()

in powershell-common/src/main/java/jetbrains/buildServer/powershell/common/PowerShellBitness.java [38:45]


  public static PowerShellBitness fromString(@Nullable String bit) {
    for (PowerShellBitness b : values()) {
      if (b.getValue().equals(bit)) {
        return b;
      }
    }
    return null;
  }