public class

CLKey

extends CLContainer

 java.lang.Object

androidx.constraintlayout.core.parser.CLElement

androidx.constraintlayout.core.parser.CLContainer

↳androidx.constraintlayout.core.parser.CLKey

Gradle dependencies

compile group: 'androidx.constraintlayout', name: 'constraintlayout-core', version: '1.1.0-beta01'

  • groupId: androidx.constraintlayout
  • artifactId: constraintlayout-core
  • version: 1.1.0-beta01

Artifact androidx.constraintlayout:constraintlayout-core:1.1.0-beta01 it located at Google repository (https://maven.google.com/)

Summary

Fields
from CLElementmContainer, mEnd, mStart, sBaseIndent, sMaxLine
Constructors
publicCLKey(char[] content[])

Methods
public static CLElementallocate(char[] content[])

public static CLElementallocate(java.lang.String name, CLElement value)

public booleanequals(java.lang.Object obj)

public java.lang.StringgetName()

public CLElementgetValue()

public inthashCode()

public voidset(CLElement value)

protected java.lang.StringtoFormattedJSON(int indent, int forceIndent)

protected java.lang.StringtoJSON()

from CLContaineradd, clear, clone, get, get, getArray, getArray, getArrayOrCreate, getArrayOrNull, getBoolean, getBoolean, getFloat, getFloat, getFloatOrNaN, getInt, getInt, getObject, getObject, getObjectOrNull, getOrNull, getOrNull, getString, getString, getStringOrNull, getStringOrNull, has, names, put, putNumber, putString, remove, size, toString
from CLElementaddIndent, content, getContainer, getDebugName, getEnd, getFloat, getInt, getLine, getStart, getStrClass, hasContent, isDone, isStarted, notStarted, setContainer, setEnd, setLine, setStart
from java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait

Constructors

public CLKey(char[] content[])

Methods

public static CLElement allocate(char[] content[])

public static CLElement allocate(java.lang.String name, CLElement value)

public java.lang.String getName()

protected java.lang.String toJSON()

protected java.lang.String toFormattedJSON(int indent, int forceIndent)

public void set(CLElement value)

public CLElement getValue()

public boolean equals(java.lang.Object obj)

public int hashCode()

Source

/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * 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 androidx.constraintlayout.core.parser;

import java.util.ArrayList;
import java.util.Objects;

public class CLKey extends CLContainer {

    private static ArrayList<String> sSections = new ArrayList<>();

    static {
        sSections.add("ConstraintSets");
        sSections.add("Variables");
        sSections.add("Generate");
        sSections.add("Transitions");
        sSections.add("KeyFrames");
        sSections.add("KeyAttributes");
        sSections.add("KeyPositions");
        sSections.add("KeyCycles");
    }

    public CLKey(char[] content) {
        super(content);
    }

    // @TODO: add description
    public static CLElement allocate(char[] content) {
        return new CLKey(content);
    }

    // @TODO: add description
    public static CLElement allocate(String name, CLElement value) {
        CLKey key = new CLKey(name.toCharArray());
        key.setStart(0);
        key.setEnd(name.length() - 1);
        key.set(value);
        return key;
    }

    public String getName() {
        return content();
    }

    @Override
    protected String toJSON() {
        if (mElements.size() > 0) {
            return getDebugName() + content() + ": " + mElements.get(0).toJSON();
        }
        return getDebugName() + content() + ": <> ";
    }

    @Override
    protected String toFormattedJSON(int indent, int forceIndent) {
        StringBuilder json = new StringBuilder(getDebugName());
        addIndent(json, indent);
        String content = content();
        if (mElements.size() > 0) {
            json.append(content);
            json.append(": ");
            if (sSections.contains(content)) {
                forceIndent = 3;
            }
            if (forceIndent > 0) {
                json.append(mElements.get(0).toFormattedJSON(indent, forceIndent - 1));
            } else {
                String val = mElements.get(0).toJSON();
                if (val.length() + indent < sMaxLine) {
                    json.append(val);
                } else {
                    json.append(mElements.get(0).toFormattedJSON(indent, forceIndent - 1));
                }
            }
            return json.toString();
        }
        return content + ": <> ";
    }

    // @TODO: add description
    public void set(CLElement value) {
        if (mElements.size() > 0) {
            mElements.set(0, value);
        } else {
            mElements.add(value);
        }
    }

    // @TODO: add description
    public CLElement getValue() {
        if (mElements.size() > 0) {
            return mElements.get(0);
        }
        return null;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof CLKey) {
            CLKey objKey = (CLKey) obj;
            if (!Objects.equals(this.getName(), objKey.getName())) {
                return false;
            }
        }
        // Delegate the rest to parent
        return super.equals(obj);
    }

    @Override
    public int hashCode() {
        return super.hashCode();
    }
}