Question

import java.util.UUID
public class Person implements Serializable {

        private UUID uuid;

        public Person() {
            uuid = UUID.fromString("3856c3da-ea56-4717-9f58-85f6c5f560a5");
        }

        public UUID getUuid() {
            return uuid;
        }
    }
Was it helpful?

Solution

It helps you parse/generate a Universally unique identifier .

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top