Here you can find the source of convertCharToBoolean(final char value)
Parameter | Description |
---|---|
value | Character which is used in ABAP as boolean value |
@Deprecated public static boolean convertCharToBoolean(final char value)
//package com.java2s; /*/*from ww w . ja va2 s.c o m*/ * [y] hybris Platform * * Copyright (c) 2000-2014 hybris AG * All rights reserved. * * This software is the confidential and proprietary information of hybris * ("Confidential Information"). You shall not disclose such Confidential * Information and shall use it only in accordance with the terms of the * license agreement you entered into with hybris. * * */ public class Main { @Deprecated private static final char ABAP_TRUE = 'X'; /** * @param value * Character which is used in ABAP as boolean value * @return boolean true if the value is 'X' */ @Deprecated public static boolean convertCharToBoolean(final char value) { return (value == ABAP_TRUE); } }