Class Point

    • Constructor Detail

      • Point

        public Point()
        Constructs a new empty instance.
      • Point

        protected Point​(boolean noInit)
        Constructs a new empty instance.
      • Point

        public Point​(JSONObject jsonObject)
        Construct a new instance backed by the given JSONObject, the parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • Point

        public Point​(Point src)
        Constructs a new instance that is a deep copy of the source instance. It does not copy the bundle or changelog.
    • Method Detail

      • getX

        public Long getX()
      • getY

        public Long getY()
      • getJSONObject

        public JSONObject getJSONObject()
        Returns the internal JSONObject backing this instance, the return value is not a copy so changes to it will be reflected in this instance and vice-versa.
        Specified by:
        getJSONObject in interface JSONifiable
      • isNotNullX

        public boolean isNotNullX()
        Checks whether the 'x' field is set and is not null
      • isNotNullY

        public boolean isNotNullY()
        Checks whether the 'y' field is set and is not null
      • hasX

        public boolean hasX()
        Checks whether the 'x' field has been set, however the value could be null
      • hasY

        public boolean hasY()
        Checks whether the 'y' field has been set, however the value could be null
      • setX

        public Point setX​(Long x)
        Sets the field 'x'.
      • setY

        public Point setY​(Long y)
        Sets the field 'y'.
      • clearX

        public void clearX()
        Clears the 'x' field, the 'has' method for this field will now return false
      • clearY

        public void clearY()
        Clears the 'y' field, the 'has' method for this field will now return false
      • containsChanges

        public boolean containsChanges()
        Returns true if this instance has any changes.
      • resetChangeLog

        public void resetChangeLog()
        Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
      • copyChanges

        public Point copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

        public void mergeChanges​(Point src)
        Copy all the changed fields from the given source to this instance.