This file contains 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 { | |
CreateDataSetCommand, | |
CreateDataSourceCommand, | |
DataSetImportMode, | |
DataSourceType, | |
DescribeDataSourceCommand, | |
QuickSightClient, | |
ResourceStatus | |
} from "@aws-sdk/client-quicksight"; |
This file contains 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
package com.hebdensoft; | |
import java.util.Comparator; | |
/** | |
* <p>A java.util.Comparator for version (or chapter) numbers, which have an arbitrary number of decimal points.</p> | |
* <p>The code was taken from https://bugs.openjdk.java.net/browse/JDK-8134512 and http://cr.openjdk.java.net/~igerasim/8134512/04/webrev/index.html</p> | |
* <p>How to use:</p> | |
* <p><code>myListOfVersionNumbers.sort(VersionNumberComparator.getInstance());</code></p> |