[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["\u003cp\u003e\u003ccode\u003eExtendableEntityUtil\u003c/code\u003e is a utility class designed for managing extendable entity objects in Java.\u003c/p\u003e\n"],["\u003cp\u003eThis class inherits several core methods from the base \u003ccode\u003eObject\u003c/code\u003e class, including \u003ccode\u003eclone\u003c/code\u003e, \u003ccode\u003eequals\u003c/code\u003e, and \u003ccode\u003ehashCode\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eareKeysEqual\u003c/code\u003e static method verifies if two \u003ccode\u003eKey\u003c/code\u003e objects are equal, even if they are incomplete.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003echeckSupportedValue\u003c/code\u003e static method validates if a given object is a valid value for an \u003ccode\u003eEntity\u003c/code\u003e property, throwing an exception if not.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ecreateKey\u003c/code\u003e static method is used to generate a new, incomplete \u003ccode\u003eKey\u003c/code\u003e object, optionally with a specified parent and kind.\u003c/p\u003e\n"]]],[],null,["# Class ExtendableEntityUtil (2.0.0)\n\n public final class ExtendableEntityUtil\n\nInternal class that provides utility methods for extendable entity objects. \n\nInheritance\n-----------\n\n[Object](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html) \\\u003e ExtendableEntityUtil \n\nInherited Members\n-----------------\n\n[Object.clone()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#clone--) \n[Object.equals(Object)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#equals-java.lang.Object-) \n[Object.finalize()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#finalize--) \n[Object.getClass()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#getClass--) \n[Object.hashCode()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#hashCode--) \n[Object.notify()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notify--) \n[Object.notifyAll()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notifyAll--) \n[Object.toString()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#toString--) \n[Object.wait()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait--) \n[Object.wait(long)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-) \n[Object.wait(long,int)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-int-)\n\nStatic Methods\n--------------\n\n### areKeysEqual(Key key1, Key key2)\n\n public static boolean areKeysEqual(Key key1, Key key2)\n\nCheck if the input `Key` objects are equal (including keys that are incomplete).\n\n### checkSupportedValue(String propertyName, Object value, boolean valuePreChecked, Set\\\u003cClass\\\u003c?\\\u003e\\\u003e supportedTypes)\n\n public static void checkSupportedValue(String propertyName, Object value, boolean valuePreChecked, Set\u003cClass\u003c?\u003e\u003e supportedTypes)\n\nIf the specified object cannot be used as the value for a `Entity` property, throw an\nexception with the appropriate explanation.\n\n### createKey(Key parent, String kind)\n\n public static Key createKey(Key parent, String kind)\n\nCreates a new `Key` with the provided parent and kind. The instantiated `Key` will\nbe incomplete."]]