2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
9 package org.opendaylight.controller.netconf.confignetconfconnector.util;
11 import static org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil.getRevisionFormat;
13 import com.google.common.base.Preconditions;
14 import java.text.ParseException;
15 import java.util.Date;
17 public final class Util {
19 public static String writeDate(final Date date) {
20 return getRevisionFormat().format(date);
23 public static Date readDate(final String s) throws ParseException {
24 return getRevisionFormat().parse(s);
27 public static void checkType(final Object value, final Class<?> clazz) {
28 Preconditions.checkArgument(clazz.isAssignableFrom(value.getClass()), "Unexpected type " + value.getClass()
29 + " should be " + clazz + " of " + value);