All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spinjar.com.sun.xml.bind.v2.runtime.reflect.opt.TransducedAccessor_field_Double Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.bind.v2.runtime.reflect.opt;

import com.sun.xml.bind.DatatypeConverterImpl;
import com.sun.xml.bind.v2.runtime.reflect.TransducedAccessor;
import com.sun.xml.bind.v2.runtime.reflect.DefaultTransducedAccessor;

/**
 * Template {@link TransducedAccessor} for a double field.
 * 

* Auto-generated, do not edit. *

*

* All the TransducedAccessor_field are generated from TransducedAccessor_field_B y t e *

* @author Kohsuke Kawaguchi * * @see TransducedAccessor#get */ public final class TransducedAccessor_field_Double extends DefaultTransducedAccessor { public String print(Object o) { return DatatypeConverterImpl._printDouble( ((Bean)o).f_double ); } public void parse(Object o, CharSequence lexical) { ((Bean)o).f_double=DatatypeConverterImpl._parseDouble(lexical); } public boolean hasValue(Object o) { return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy