()
| 985 | } |
| 986 | |
| 987 | @Override |
| 988 | @NotNull |
| 989 | public Map<String, Object> serialize() { |
| 990 | Map<String, Object> result = new LinkedHashMap<String, Object>(); |
| 991 | |
| 992 | result.put("x", getX()); |
| 993 | result.put("y", getY()); |
| 994 | result.put("z", getZ()); |
| 995 | |
| 996 | return result; |
| 997 | } |
| 998 | |
| 999 | @NotNull |
| 1000 | public static Vector deserialize(@NotNull Map<String, Object> args) { |