class GUID
It is an identifier, it has unique information of a certain element, used for example in objects and components.
— Constructors (1) —
Constructor | Description |
---|
GUID() | Creates a new GUID. |
— Methods (3) —
Name | Description |
---|
void setDuplicableGUID(String guid) | Defines a unique code that can be cloned (if you clone the object, the code is cloned together) to be "guid" argument. |
String getDuplicableGUID() | Returns a unique code that can be cloned (if you clone the object, the code is cloned along with it). |
String getUniqueGUID() | Returns a unique code that cannot be cloned (even if the object is cloned, a new code will be generated). |