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

io.github.mmm.code.impl.java.expression.literal.JavaLiteralClass Maven / Gradle / Ivy

There is a newer version: 0.9.10
Show newest version
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.code.impl.java.expression.literal;

import io.github.mmm.code.api.expression.CodeLiteral;

/**
 * Implementation of {@link JavaLiteral} for {@link Class} literal.
 *
 * @param  the type of the {@link Class} {@code value}.
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0
 */
public final class JavaLiteralClass extends JavaLiteral> {

  private final boolean qualified;

  private JavaLiteralClass(Class value, boolean qualified) {

    super(value);
    this.qualified = qualified;
  }

  @Override
  public JavaLiteralClass withValue(Class newValue) {

    return new JavaLiteralClass<>(newValue, this.qualified);
  }

  @SuppressWarnings({ "unchecked", "rawtypes" })
  @Override
  public Class> getJavaClass() {

    return (Class) Class.class;
  }

  @Override
  public String getSourceCode() {

    String name;
    if (this.qualified) {
      name = this.value.getSimpleName();
    } else {
      name = this.value.getName();
    }
    return name + ".class";
  }

  @Override
  public boolean isPrimitive() {

    return false;
  }

  /**
   * @param  the type of the {@link Class} {@code value}.
   * @param value the literal value. May not be {@code null}.
   * @return the {@link CodeLiteral} for the given {@code value}.
   */
  public static  JavaLiteralClass of(Class value) {

    return of(value, false);
  }

  /**
   * @param  the type of the {@link Class} {@code value}.
   * @param value the literal value. May not be {@code null}.
   * @param qualified - {@code true} to use the {@link Class#getName() qualified name}, {@code false} otherwise (for
   *        {@link Class#getSimpleName() simple name}).
   * @return the {@link CodeLiteral} for the given {@code value}.
   */
  public static  JavaLiteralClass of(Class value, boolean qualified) {

    return new JavaLiteralClass<>(value, qualified);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy