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

net.sandius.rembulan.MetatableProvider Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
/*
 * Copyright 2016 Miroslav Janíček
 *
 * Licensed 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 net.sandius.rembulan;

/**
 * An interface for obtaining value metatables.
 *
 * 

In Lua, only tables and (full) userdata carry their own metatables; for all other * types of values T, all values of type T share a metatable. This interface * provides uniform access to metatables of all types.

*/ public interface MetatableProvider { /** * Returns the metatable for nil (the {@code nil} type), or {@code null} if this * provider does not assign a metatable to the {@code nil} type. * * @return the metatable for the {@code nil} type */ Table getNilMetatable(); /** * Returns the metatable for {@code boolean} values, or {@code null} if this provider does * not assign a metatable to the {@code boolean} type. * * @return the metatable for the {@code boolean} type */ Table getBooleanMetatable(); /** * Returns the metatable for {@code number} values, or {@code null} if this provider does * not assign a metatable to the {@code number} type. * * @return the metatable for the {@code number} type */ Table getNumberMetatable(); /** * Returns the metatable for {@code string} values, or {@code null} if this provider does * not assign a metatable to the {@code string} type. * * @return the metatable for the {@code string} type */ Table getStringMetatable(); /** * Returns the metatable for {@code function} values, or {@code null} if this provider does * not assign a metatable to the {@code function} type. * * @return the metatable for the {@code function} type */ Table getFunctionMetatable(); /** * Returns the metatable for {@code thread} values, or {@code null} if this provider does * not assign a metatable to the {@code thread} type. * * @return the metatable for the {@code thread} type */ Table getThreadMetatable(); /** * Returns the metatable for light userdata, or {@code null} if this provider does * not assign a metatable to light userdata.. * * @return the metatable for light userdata */ Table getLightUserdataMetatable(); /** * Returns the metatable for the object {@code instance}, or {@code null} if this * metatable provider does not assign any metatable to {@code instance}. * * @param instance the object to obtain a metatable for, may be {@code null} * @return the metatable of {@code instance}, or {@code null} if there is no metatable * assigned to {@code instance} in this provider */ Table getMetatable(Object instance); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy