This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.powsybl.iidm.network.Exporter; | |
import com.powsybl.iidm.network.Network; | |
import java.lang.reflect.Modifier; | |
import java.net.JarURLConnection; | |
import java.net.URLDecoder; | |
import java.nio.charset.StandardCharsets; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.util.Optional; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.common.annotations.VisibleForTesting; | |
import java.util.UUID; | |
public final class UuidUtils { | |
private UuidUtils() { | |
throw new AssertionError("Utility class should not be instantiated"); | |
} | |
/** | |
* Like {@link UUID#randomUUID()} generate UUID v4 variant 2, but not random.<br/> |