()
| 861 | } |
| 862 | |
| 863 | @Override |
| 864 | @NotNull |
| 865 | public Map<String, Object> serialize() { |
| 866 | Map<String, Object> result = new LinkedHashMap<String, Object>(); |
| 867 | |
| 868 | result.put("x", getX()); |
| 869 | result.put("y", getY()); |
| 870 | result.put("z", getZ()); |
| 871 | |
| 872 | return result; |
| 873 | } |
| 874 | |
| 875 | @NotNull |
| 876 | public static Vector deserialize(@NotNull Map<String, Object> args) { |