[
https://issues.apache.org/jira/browse/FLINK-1252?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14219285#comment-14219285
]
ASF GitHub Bot commented on FLINK-1252:
---------------------------------------
Github user uce commented on a diff in the pull request:
https://github.com/apache/incubator-flink/pull/215#discussion_r20640095
--- Diff:
flink-core/src/main/java/org/apache/flink/api/common/typeutils/base/EnumSerializer.java
---
@@ -0,0 +1,122 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.api.common.typeutils.base;
+
+import java.io.IOException;
+import java.io.ObjectInputStream;
+import java.lang.reflect.Method;
+
+import org.apache.flink.api.common.typeutils.TypeSerializer;
+import org.apache.flink.core.memory.DataInputView;
+import org.apache.flink.core.memory.DataOutputView;
+
+
+public final class EnumSerializer<T extends Enum<T>> extends
TypeSerializer<T> {
+
+ private static final long serialVersionUID = 1L;
+
+ private transient T[] values;
+
+ private final Class<T> enumClass;
+
+ public EnumSerializer(Class<T> enumClass) {
+ this.enumClass = enumClass;
+ this.values = createValues(enumClass);
+ }
+
--- End diff --
trivial: empty line
> Add a serializer for Date
> -------------------------
>
> Key: FLINK-1252
> URL: https://issues.apache.org/jira/browse/FLINK-1252
> Project: Flink
> Issue Type: Improvement
> Reporter: Robert Metzger
> Assignee: Robert Metzger
>
> Since FLINK-610 is still an unresolved issue, I've started working on adding
> support for Date fields in POJOs in Flink.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)