> +
> +    public enum ArchitectureType {
> +        Bits32(32),
> +        Bits64(64);
> +
> +        private int id; // Could be other data type besides int
> +
> +        private ArchitectureType(int id) {
> +            this.id = id;
> +        }
> +
> +        public int getId() {
> +            return this.id;
> +        }
> +
> +        public static Map<Integer, ArchitectureType> buildMap() {

Is this method actually used?

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68668032

Reply via email to